Hi i was trying to make ti so that the humanoids jump is disabled for 12 seconds then you can jump again please help?
repeat wait() until plr.Character local chr = plr.Character chr:WaitForChild("Humanoid").Changed:connect(function() chr.Humanoid.Jump = false end)
Make the event a variable, and disconnect it after the given amount of time. Try studying this example:
repeat wait() until plr.Character local chr = plr.Character local event = chr:WaitForChild("Humanoid").Changed:connect(function() chr.Humanoid.Jump = false end) wait(12) event:disconnect()