Advertisement
ConfinedDev

Re-spawn Script

Feb 20th, 2020
701
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.29 KB | None | 0 0
  1. object = script.Parent
  2. if (object ~= nil) and (object ~= game.Workspace) then
  3. model = object
  4. backup = model:clone()
  5. waitTime = 6
  6. wait(waitTime)
  7. while true do
  8. wait(waitTime)
  9.  
  10. model:remove()
  11.  
  12.  
  13.  
  14. model = backup:clone()
  15. model.Parent = game.Workspace
  16. model:makeJoints()
  17. end
  18. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement