Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

Textlabel GUI unDisable script not working??

Asked by 4 years ago
Edited 4 years ago

Please include the code which you are trying to use, so the community will be better-equipped to help you with your problem.

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?

1 answer

Log in to vote
0
Answered by 4 years ago
Edited 4 years ago

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
Ad

Answer this question