bigG123
|
  |
| Joined: 17 Feb 2008 |
| Total Posts: 4117 |
|
|
| 01 Sep 2011 09:31 PM |
Only works in Solo.
Speed = 32 Speed2 = 16
bin = script.Parent local player = script.Parent.Parent.Parent while true do wait() if player.Character then if player.Character:FindFirstChild("Torso") and player.Character:FindFirstChild("Humanoid") then break end end end
coroutine.resume(coroutine.create(function() while true do wait(0.2) if player.Character.Humanoid.WalkSpeed > 16 then if player.Character.Torso.Velocity.magnitude < 1 then player.Character.Humanoid.WalkSpeed = 16 end end end end))
r = game:GetService("RunService")
local last_click = 0 local last_key = ""
function onKeyDown(key) print(key) key = key:lower() t = r.Stepped:wait() if (t - last_click < .2) and (key == last_key) then if key:match("[wasd]") then game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = Speed wait(5) game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = Speed2 wait(5) end end last_click = t last_key = key end
function onEquipped(mouse) mouse.KeyDown:connect(onKeyDown) end
bin.Equipped:connect(onEquipped) |
|
|
| Report Abuse |
|
|
| |
|
bigG123
|
  |
| Joined: 17 Feb 2008 |
| Total Posts: 4117 |
|
|
| 01 Sep 2011 09:41 PM |
| No just a regular one, but it is in a tool. |
|
|
| Report Abuse |
|
|
superior
|
  |
| Joined: 13 Apr 2008 |
| Total Posts: 1662 |
|
| |
|
bigG123
|
  |
| Joined: 17 Feb 2008 |
| Total Posts: 4117 |
|
| |
|