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?
Try changing
TextBox = script.Child
to something else. "Child" is a term like "Parent"