ZV0K

Sky Anti Lock ☁️

Sep 2nd, 2023
115
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. getgenv().Sky = true
  2. getgenv().SkyAmount = 1600
  3.  
  4. game:GetService("RunService").heartbeat:Connect(function()
  5. if getgenv().Sky ~= false then
  6. local vel = game.Players.LocalPlayer.Character.HumanoidRootPart.Velocity
  7. game.Players.LocalPlayer.Character.HumanoidRootPart.Velocity = Vector3.new(0, getgenv().SkyAmount,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