Advertisement
SxScripting

Respawn Script

Oct 12th, 2020
346
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.20 KB | None | 0 0
  1. local Humanoid = script.Parent.Humanoid
  2. local Character = script.Parent
  3. local Clone = Character:Clone()
  4.  
  5. Humanoid.Died:Connect(function()
  6.     wait(4)
  7.     Clone.Parent = workspace
  8.     Character:Destroy()
  9. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement