Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
1

How can this be fixed?

Asked by 10 years ago

So, im trying to make text cycle through a surface GUI and I tried this

TextBox = script.Child
while wait(1) do
TextBox.Text = "I like watermelon"
wait(1)
TextBox.Text = "I also like bacon"
wait(1)
TextBox.Text = "I also like fried chicken"
end

What's wrong with this?

1 answer

Log in to vote
0
Answered by
Seenit 80
10 years ago

Try changing

TextBox = script.Child

to something else. "Child" is a term like "Parent"

0
Perfect, I changed "Child" to "Parent" and it worked flawlessly! Thank you! Chromathyst 10 — 10y
Ad

Answer this question