Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- --[[
- _aaapapapaapa/pa
- == == = = = == ===papp/pap
- ====== ==[-] ==== =paa/ppa
- == === =/_/ === ==aap/paapp
- === = / === ==ppp/appap
- o -aappap/aap
- SPEEDRUN OPERATION 1.2
- What's new?
- 09/09/2020
- New feature! IncreasePower Setting!
- 08/09/2020:
- Updated featured answers and questions!
- 07/09/2020:
- Initial patch release.
- ]]
- local player = game.Players.LocalPlayer
- local char = player.Character
- local humanoid = char:FindFirstChild("Humanoid")
- local running
- --SETTINGS
- local increasePower = 0.5 --(0.5 - 1 max)
- humanoid.Running:Connect(function(isRun)
- if isRun > 2 then running = true elseif isRun < 1 then running = false end
- while true do
- if running == true then
- wait(.1)
- humanoid.WalkSpeed = humanoid.WalkSpeed + increasePower
- humanoid.JumpPower = humanoid.JumpPower + increasePower
- else
- humanoid.WalkSpeed = 16
- humanoid.JumpPower = 50
- break
- end
- end
- end)
- while true do
- wait()
- if humanoid.WalkSpeed >= 80 then
- humanoid.WalkSpeed = 79
- humanoid.JumpPower = 79
- elseif humanoid.WalkSpeed == 80 then
- humanoid.WalkSpeed = 79
- humanoid.JumpPower = 79
- end
- end
- --[[
- Featured answers and questions:
- Q: Some players can see you running?
- A: Yes, sure. i tested it and players showed it! I'll recommend you using JJSploit to see players you running!
- Q: Is there maximum speed limit?
- A: Yes, the maximum speed limit is 80
- Q: Does it work in other games?
- A: Yes, such as catalog heaven, meepcity, etc...
- Q: Does it works with R6 or R15?
- A: Yes, sure! it works and tested both R6 and R15.
- Q: The script works with server?
- A: No, it only works with client. It tested and it dosen't work already with server!
- ]]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement