Advertisement
ZV0K

X Anti Desync

Sep 5th, 2023 (edited)
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.52 KB | None | 0 0
  1. -- Toggles
  2. getgenv().XAnti = true
  3. getgenv().AntiStrength = 1500 --(800-1500 is best)
  4.  
  5. -- Work Part
  6. game:GetService("RunService").heartbeat:Connect(function()
  7. if getgenv().XAnti ~= false then
  8. local vel = game.Players.LocalPlayer.Character.HumanoidRootPart.Velocity
  9. game.Players.LocalPlayer.Character.HumanoidRootPart.Velocity = Vector3.new(getgenv().AntiStrength,0,0)
  10. game:GetService("RunService").RenderStepped:Wait()
  11. game.Players.LocalPlayer.Character.HumanoidRootPart.Velocity = vel
  12. end
  13. end)
  14.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement