Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- while true do
- wait(0.1)
- local character = game.Players.LocalPlayer.Character
- if not character then
- continue
- end
- local humanoid = character:FindFirstChildOfClass("Humanoid")
- if not humanoid then
- continue
- end
- local rootPart = character:FindFirstChild("HumanoidRootPart")
- if not rootPart then
- continue
- end
- local currentPosition = rootPart.Position
- if currentPosition.Y <= -70 then
- rootPart.CFrame = CFrame.new(Vector3.new(97, -88, 1))
- end
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement