So I recently created a Textlabel that changes the text every few seconds. I created another gui that would disable the textlabel changing script. But when I try to enable it, the text doesnt keep changing..
how would i go about reversing this with an unpause button?
You can probably do this and put this at the bottom of the script:
while true do local numberOfSeconds = 3 script:Clone().Parent = script.Parent script:Destroy() wait(numberOfSeconds) end