Advertisement
loleriss

Untitled

Jul 11th, 2019
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.54 KB | None | 0 0
  1. while true do
  2. wait()
  3. local player = game.Players.LocalPlayer
  4. local pos = player.Character.HumanoidRootPart.CFrame
  5.  
  6. player.Character.Head:Destroy()
  7.  
  8. game.Workspace.ChildAdded:Connect(function(plays)
  9. if plays.Name == player.Name then
  10. if plays:IsA("Model") then
  11. if plays:FindFirstChild("HumanoidRootPart") then
  12. plays.HumanoidRootPart.CFrame = pos
  13. else
  14. wait(1)
  15. if plays:FindFirstChild("HumanoidRootPart") then
  16. plays.HumanoidRootPart.CFrame = pos
  17. end
  18. end
  19. end
  20. end
  21. end)
  22.  
  23. break
  24. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement