script.Parent.Text = Test1 wait(3) script.Parent.Text = Test2 wait(4)
The script I am currently using Nothing's happening when I run the server. The scripts parent is a textbutton. What am I doing wrong?
Er, you need quotation marks. This is the correct script:
script.Parent.Text = "Test1" wait(3) script.Parent.Text = "Test2"
The wait at the end is also not needed. I'm Aurum, and you're welcome.