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:
example = "Hello" a.Text = example.." World"
This is possible, but you're doing it wrong. Here's how you could do this.
VariableName = "Hello" a.Text = VariableName.." World"