Advertisement
Filipono120

ROBLOX Speedrun Operation Script

Sep 7th, 2020 (edited)
2,472
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.75 KB | None | 0 0
  1. --[[
  2.                _aaapapapaapa/pa
  3.     == == = = = == ===papp/pap
  4.     ====== ==[-] ==== =paa/ppa
  5.     == === =/_/ === ==aap/paapp
  6.     === =   / === ==ppp/appap
  7.            o     -aappap/aap
  8.            
  9.     SPEEDRUN OPERATION 1.2
  10.  
  11.     What's new?
  12.    
  13.     09/09/2020
  14.  
  15.     New feature! IncreasePower Setting!
  16.    
  17.     08/09/2020:
  18.    
  19.     Updated featured answers and questions!
  20.  
  21.     07/09/2020:
  22.    
  23.     Initial patch release.
  24.    
  25. ]]
  26.  
  27. local player = game.Players.LocalPlayer
  28. local char = player.Character
  29. local humanoid = char:FindFirstChild("Humanoid")
  30. local running
  31.  
  32. --SETTINGS
  33.  
  34. local increasePower = 0.5 --(0.5 - 1 max)
  35.  
  36. humanoid.Running:Connect(function(isRun)
  37.     if isRun > 2 then running = true elseif isRun < 1 then running = false end
  38.    
  39.     while true do
  40.         if running == true then
  41.             wait(.1)
  42.             humanoid.WalkSpeed = humanoid.WalkSpeed + increasePower
  43.             humanoid.JumpPower = humanoid.JumpPower + increasePower
  44.         else
  45.             humanoid.WalkSpeed = 16
  46.             humanoid.JumpPower = 50
  47.             break
  48.         end
  49.     end
  50. end)
  51.  
  52. while true do
  53.     wait()
  54.     if humanoid.WalkSpeed >= 80 then
  55.         humanoid.WalkSpeed = 79
  56.         humanoid.JumpPower = 79
  57.     elseif humanoid.WalkSpeed == 80 then
  58.         humanoid.WalkSpeed = 79
  59.         humanoid.JumpPower = 79
  60.     end
  61. end
  62.  
  63. --[[
  64.  
  65.     Featured answers and questions:
  66.  
  67.     Q: Some players can see you running?
  68.     A: Yes, sure. i tested it and players showed it! I'll recommend you using JJSploit to see players you running!
  69.    
  70.     Q: Is there maximum speed limit?
  71.     A: Yes, the maximum speed limit is 80
  72.  
  73.     Q: Does it work in other games?
  74.     A: Yes, such as catalog heaven, meepcity, etc...
  75.  
  76.     Q: Does it works with R6 or R15?
  77.     A: Yes, sure! it works and tested both R6 and R15.
  78.  
  79.     Q: The script works with server?
  80.     A: No, it only works with client. It tested and it dosen't work already with server!
  81.  
  82. ]]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement