Advertisement
Jacob-RobloxScripts

dasww

Nov 5th, 2022
27
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. game:GetService"RunService".RenderStepped:Connect(function()
  2. game.Players.LocalPlayer.Character.Humanoid.JumpHeight = 140
  3. game.Players.LocalPlayer.Character.Humanoid.JumpPower = 140
  4. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 140
  5. end)
  6.  
  7. game.Players.LocalPlayer.Character.FallDamage:Remove()
  8.  
  9. local old = getrenv()._G.hitbox.start
  10. getrenv()._G.hitbox.start = function(...)
  11. local arg = {...}
  12. arg[3] = Vector3.new(30, 30, 30)
  13. return old(unpack(arg))
  14. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement