Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- --Made by MrLua(1/0'd#7036)
- --Credits to Heplful Guy for the idea lol
- local Player = game:GetService("Players").LocalPlayer
- repeat wait() until Player.Character
- local function Main()
- local Humanoid = Player.Character:WaitForChild("Humanoid")
- local ripfunction = false
- Humanoid.Died:Connect(function()
- local DeathLocation = Player.Character:WaitForChild("HumanoidRootPart").CFrame
- workspace.ChildAdded:Connect(function(Object)
- if not ripfunction and Object.Name == Player.Name then
- wait()
- Player.Character:WaitForChild("HumanoidRootPart").CFrame = DeathLocation
- ripfunction = true
- Main()
- end
- end)
- end)
- end
- Main()
Add Comment
Please, Sign In to add comment