I Am Still Figuring Out Lua And It Is Very Confusing. When I Test The Script It Will Not Change The Gui. I Searched The Web A Lot More Than I Usually Do And I Could Not Find Anything.
script.Parent wait(10) textlabel.text "Welcome To Survivor" end
Here's a script I made for you. I hope it helps. Just make sure to put this script in the TextLablel. Always make sure to use caps when needed.
while true do ---This will make it so it would repeat. wait(30)----- Wait for 30 seconds script.Parent.TextLabel.Text = ("Welcome to Survivor") -----Prints in Text "Welcome to survivor" end
You should use some definition
Text = script.Parent.TextLabel.Text wait (10) Text = ("Welcome to Survivor") print ("Gui changed") ---> for beginner, use it regularly