Advertisement
Vzurxy

Untitled

Oct 27th, 2017
165
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. --//This scripts regenerates the Test Dummy
  2. --//Variables\\--
  3. local RespawnTime = 2 --//Seconds
  4. local Humanoid = script.Parent:WaitForChild("Humanoid")
  5. local Copy = script.Parent:Clone()
  6. Copy.Parent = Dummy798
  7.  
  8. --//Functions\\--
  9. local function Respawn()
  10. Copy.Parent = workspace
  11. script.Parent:Destroy()
  12. end
  13.  
  14. --//Events\\-
  15. Humanoid.Died:connect(function()
  16. wait(RespawnTime)
  17. Respawn()
  18. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement