Nx1404

walk

Feb 25th, 2020 (edited)
234
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.25 KB | None | 0 0
  1. WalkSpeed = false
  2. game:GetService('RunService').Stepped:connect(function()
  3. if WalkSpeed then
  4. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 80
  5. end
  6. end)
  7. plr = game.Players.LocalPlayer
  8. mouse = plr:GetMouse()
  9. mouse.KeyDown:connect(function(key)
  10.  
  11. if key == "t" then
  12. WalkSpeed = not WalkSpeed
  13. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 80
  14. end
  15. end)
  16. print('Loaded')
  17. print('Press "t" to noclip')
  18.  
  19. repeat wait() until game:IsLoaded()
  20. loadstring(game:HttpGet("https://raw.githubusercontent.com/1201for/V.G_Hub_Extras/main/Universal_Client_Bypass"))()
  21.  
  22. noclip = false
  23. game:GetService('RunService').Stepped:connect(function()
  24. if noclip then
  25. game.Players.LocalPlayer.Character:WaitForChild("Humanoid"):ChangeState(11)
  26. end
  27. end)
  28. plr = game.Players.LocalPlayer
  29. mouse = plr:GetMouse()
  30. mouse.KeyDown:connect(function(key)
  31.  
  32. if key == "e" then
  33. noclip = not noclip
  34. game.Players.LocalPlayer.Character:WaitForChild("Humanoid"):ChangeState(11)
  35. end
  36. end)
  37. print('Loaded')
  38. print('Press "e" to noclip')
  39.  
  40. local InfiniteJumpEnabled = true
  41. game:GetService("UserInputService").JumpRequest:connect(function()
  42. if InfiniteJumpEnabled then
  43. game:GetService"Players".LocalPlayer.Character:FindFirstChildOfClass'Humanoid':ChangeState("Jumping")
  44. end
  45. end)
Add Comment
Please, Sign In to add comment