Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

How can I make a counter go down everytime someone jumps?

Asked by 2 years ago

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?

0
Do you mean leaderstats, or a gui? salaarkhan1 28 — 2y
0
Gui Sxribbly 16 — 2y

1 answer

Log in to vote
0
Answered by 2 years ago

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)
0
Thanks! Sxribbly 16 — 2y
0
How do I make a value? Sxribbly 16 — 2y
Ad

Answer this question