|
| 09 Feb 2013 12:54 PM |
object = script.Parent if (object ~= nil) then model = object backup = model:clone() waitTime = 50 wait(math.random(0, waitTime)) while true do wait(waitTime) -- Regen wait time model:remove() --REMOVE G model = backup:clone() model.Parent = game.Workspace model:makeJoints() end end
This script regens it's parent. But, I want to edit something in it's parent. That's impossible now because the regening never stops! So, my question is: how can I stop this script? Note: everything inside the model (including the script) can't be modified. |
|
|
| Report Abuse |
|
|
| |
|
| |
|
|
| 09 Feb 2013 12:57 PM |
Nvm.. I somehow managed to delete the entire model with this script in it. This is fine, I can easily remake it. |
|
|
| Report Abuse |
|
|