of     1   

spinywind
#182355007Monday, January 25, 2016 2:06 AM GMT

^
C_Sharper
#182355132Monday, January 25, 2016 2:08 AM GMT

game.Players.LocalPlayer.Character.Humanoid.Changed:connect(function() if game.Players.LocalPlayer.Character.Humanoid.Jump == true then --wait jump length wait(1) game.Players.LocalPlayer.Character.Humanoid.JumpPower = 0 wait(COOLDOWN_TIME) game.Players.LocalPlayer.Character.Humanoid.JumpPower = 100 --idk the default end end)
spinywind
#182355500Monday, January 25, 2016 2:13 AM GMT

in workspace?
128Gigabytes
#182356530Monday, January 25, 2016 2:25 AM GMT

--[[ServerScript in game.ServerScriptService]] game.playerAdded:connect(function(player) local connection = workspace.Changed:connect(function() return (nil); end) player.characterAdded:connect(function(character) connection:disconnect() local humanoid = character:waitForChild("Humanoid") connection = humanoid.Jump:connect(function() local jumpPower = humanoid.JumpPower humanoid.JumpPower = 0 wait(5) humanoid.JumpPower = jumpPower end) end) end) --[[Untested and written on my iPhone, I have no clue if this will work.]]
spinywind
#182357685Monday, January 25, 2016 2:40 AM GMT

did not work
128Gigabytes
#182360615Monday, January 25, 2016 3:18 AM GMT

I'm on a computer now, tested and fixed. --[[ServerScript in game.ServerScriptService]] game.Players.playerAdded:connect(function(player) local connection = workspace.Changed:connect(function() return (nil); end) player.characterAdded:connect(function(character) connection:disconnect() local humanoid = character:waitForChild("Humanoid") connection = humanoid.Jumping:connect(function() local jumpPower = humanoid.JumpPower wait() humanoid.JumpPower = 0 wait(5) humanoid.JumpPower = jumpPower end) end) end) --[[Untested and written on my iPhone, I have no clue if this will work.]]
spinywind
#182362414Monday, January 25, 2016 3:43 AM GMT

ty ^
spinywind
#182362818Monday, January 25, 2016 3:49 AM GMT

After 2 jumps you cant jump at all. I just want it so you can jump once every 3 seconds.
128Gigabytes
#182363051Monday, January 25, 2016 3:54 AM GMT

Change this local jumpPower = humanoid.JumpPower wait() humanoid.JumpPower = 0 wait(5) humanoid.JumpPower = jumpPower to this wait() humanoid.JumpPower = 0 wait(5) humanoid.JumpPower = 50
Yerladu
#182363363Monday, January 25, 2016 3:59 AM GMT

You Can't Jump If You Have A Debounce On Lol :] I Kniw How To Break Jumping Though While True Do End BreakJumps():;$& END#
spinywind
#182363375Monday, January 25, 2016 3:59 AM GMT

ty it worked. Would you want to be hired as my scripter/helper if i paid u a good price?
Yerladu
#182363497Monday, January 25, 2016 4:01 AM GMT

I Charge 90 Killion
128Gigabytes
#182363851Monday, January 25, 2016 4:08 AM GMT

Scripting is a hobby I don't want to be paid for it, or more specifically I don't want to work for someone.

    of     1