this is hard to explain but bassicaly i have the Name of a variable as a string (and thats inttended) and I need to turn that string back to a name so I can edit it, a match statment would not work because they are both in completly diffrent scripts
If you want to access the variable corresponding to the name string you have, use get(name_str) or set(name_str, value). If you’re looking for key-value mapping, Dictionary will suit the job.