MaxproGlitcher

spawn where you died .lua

Oct 13th, 2025
33
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. local char = localPlayer.Character
  2. if not char then return end
  3.  
  4. local root = char:FindFirstChild("HumanoidRootPart")
  5. if not root then return end
  6.  
  7. local savedCFrame = root.CFrame
  8.  
  9. --once your respawned
  10. local newChar = localPlayer.CharacterAdded:Wait()
  11. local newRoot = newChar:WaitForChild("HumanoidRootPart")
  12.  
  13. newRoot.CFrame = savedCFrame
Advertisement
Add Comment
Please, Sign In to add comment