Advertisement
097YT

free headless

Oct 17th, 2021
432
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.97 KB | None | 0 0
  1. local lp = game:GetService "Players".LocalPlayer
  2. if lp.Character:FindFirstChild "Head" then
  3. local char = lp.Character
  4. char.Archivable = true
  5. local new = char:Clone()
  6. new.Parent = workspace
  7. lp.Character = new
  8. wait(2)
  9. local oldhum = char:FindFirstChildWhichIsA "Humanoid"
  10. local newhum = oldhum:Clone()
  11. newhum.Parent = char
  12. newhum.RequiresNeck = false
  13. oldhum.Parent = nil
  14. wait(2)
  15. lp.Character = char
  16. new:Destroy()
  17. wait(1)
  18. newhum:GetPropertyChangedSignal("Health"):Connect(
  19. function()
  20. if newhum.Health <= 0 then
  21. oldhum.Parent = lp.Character
  22. wait(1)
  23. oldhum:Destroy()
  24. end
  25. end)
  26. workspace.CurrentCamera.CameraSubject = char
  27. if char:FindFirstChild "Animate" then
  28. char.Animate.Disabled = true
  29. wait(.1)
  30. char.Animate.Disabled = false
  31. end
  32. lp.Character:FindFirstChild "Head":Destroy()
  33. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement