of     1   

SnyFort
#139127895Thursday, July 03, 2014 7:14 PM GMT

I made a script that stops in a few seconds. I wanna make another that repeats it. (sorry for my english)
MTamidex
#139132652Thursday, July 03, 2014 7:47 PM GMT

Specify: You want to repeat the script or you really want one that repeats another? If you just want it to repeat you can create loops depending on the script
LegitimateBuisness
#139132833Thursday, July 03, 2014 7:48 PM GMT

If you really want to do it from another script you can set Disabled to false and back to true again..
SnyFort
#139135598Thursday, July 03, 2014 8:14 PM GMT

Ok thx
robloxandtyler
#139136750Thursday, July 03, 2014 8:24 PM GMT

while true do wait(1) game.Workspace.Script.Disabled = true wait(1) game.Workspace.Script.Disabled = false end

    of     1