local player = game.Players.LocalPlayer
local char = player.Character or player.CharacterAdded
local hum = char:WaitForChild("Humanoid")
local jumpcd = false
local jumpcdtime = 2
if jumpcd == true then
hum.JumpPower = 0
else
hum.JumpPower = 50
end
if hum.Jump == true then
jumpcd = true
wait(jumpcdtime)
jumpcd = false
end
#i cant tell if im really slow or not but this isnt working should i use a local function
1 messages · Page 1 of 1 (latest)