so my variable is a string but for some reason it won't work? is it possible to say: example = "Hello" a.Text = example" World" all in one line?
Yes, it is very possible to set the Text of a Gui to a variable, you would use two dots to combine the variable with a string. Like so:
1 | example = "Hello" |
2 | a.Text = example.. " World" |
This is possible, but you're doing it wrong. Here's how you could do this.
1 | VariableName = "Hello" |
2 | a.Text = VariableName.. " World" |