This script is supposed to award 1 coin per every click, but it's not functioning, what have I done wrong?
link to code Thank you for helping, Fersist
I read the script and noticed that your RemoteEvents.CoinClicked
dosen't exactly work all of the time instead you should use a script like this:
tool.Activated:Connect(function() if Player.leaderstats.HiddenValues.CurrentValue.Value < Player.leaderstats.Storage.Value then if Debounce == false then Debounce = true Coin.MouseClick:connect(function() --Code here end) wait() Debounce = false end