If I say have a gui and I want to change the text through a script this works:
1 | script.Parent.Text = "Blah" |
And this does:
1 | Words = script.Parent |
2 | Words.Text = "Blah" |
But this does not:
1 | Words = script.Parent.Text |
2 | Word = "Blah" |
How come?
Your indexing is wrong. The variable 'Word' is not located in the script, so it doesn't know what to do.
1 | Words = script.Parent.Text |
2 | Words = "Blah" |