Advertisement
Souperyi

Roblox *SCRIPT* , Super velocity and super jump

Jul 27th, 2022
1,370
1
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.33 KB | None | 1 0
  1. --K - Active vel
  2. --L - Active jump
  3.  
  4. --Script
  5. local uis = game:GetService("UserInputService")
  6. local velocity = false
  7. local jump = false
  8.  
  9. local speedvalue = 215
  10. local jumpvalue = 200
  11.  
  12. local system = true
  13.  
  14. uis.InputBegan:Connect(function(ipt)
  15. if ipt.KeyCode == Enum.KeyCode.L then
  16. if system == true then
  17. return
  18. end
  19. if jump == false and system == true then
  20. jump = true
  21. game.Players.LocalPlayer.Character.Humanoid.JumpPower = jumpvalue
  22. else
  23. jump = false
  24. game.Players.LocalPlayer.Character.Humanoid.JumpPower = 50
  25. end
  26. end
  27. end)
  28. uis.InputBegan:Connect(function(ipt)
  29. if ipt.KeyCode == Enum.KeyCode.K then
  30. if system == true then
  31. return
  32. end
  33. if velocity == false then
  34. jump = true
  35. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = speedvalue
  36. else
  37. jump = false
  38. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 16
  39. end
  40. end
  41. end)
  42.  
  43. --==Off button
  44.  
  45. uis.InputBegan:Connect(function(ipt)
  46. if ipt.KeyCode == Enum.KeyCode.Delete then
  47. system = false
  48. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 16
  49. game.Players.LocalPlayer.Character.Humanoid.JumpPower = 50
  50. end
  51. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement