Whenever I make a script that makes a GUI change it's text for example changing a message on a GUI, it doesn't appear until you reset, is there any way to avoid this?
-- script is in a GUI Text Label while true do wait(1) script.Parent.Text = "Welcome to my game!" wait(10) script.Parent.Text = "Send me feedback"
It works but you have to reset for it to work, I do not want that.
--I think it's because it was to fast? while wait() do -- If this dosn't work try changing it to wait(1) or more. wait(1) script.Parent.Text = "Welcome to my game!" wait(10) script.Parent.Text = "Send me feedback" end -- I'm pretty sure you need end for it to work