I want to make a counter that has a specific amount of jumps subtract 1 every time the player jumps. How can I do this?
You can use a number value and subtract it by 1 every time the player jumps.
Humanoid:GetPropertyChangedSignal("Jump"):Connect(function() YourValue.Value -= 1 end)