Advertisement
Honansik

Da Hood Anti Lock Script

Sep 7th, 2023
3,208
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.52 KB | None | 0 0
  1. getgenv().Sky = true --disable or enable the antilock
  2. getgenv().SkyAmount = 90 --how far it should be
  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)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement