Prokri43

Legit aa

Aug 9th, 2023
28
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. getgenv().Underground = true
  2. getgenv().UndergroundAmount = 90
  3.  
  4. game:GetService("RunService").heartbeat:Connect(function()
  5. if getgenv().Underground ~= false then
  6. local vel = game.Players.LocalPlayer.Character.HumanoidRootPart.Velocity
  7. game.Players.LocalPlayer.Character.HumanoidRootPart.Velocity = Vector3.new(0,- getgenv().UndergroundAmount,0)
  8. game:GetService("RunService").RenderStepped:Wait()
  9. game.Players.LocalPlayer.Character.HumanoidRootPart.Velocity = vel
  10. end
  11. end)
Add Comment
Please, Sign In to add comment