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

Why won't the player go back down to 0 Money from an OnTouch script?

Asked by 5 years ago

I'm trying to make a reset block so when the player touches this part, their leaderstats will restart. But it doesn't work.

1function onTouched(hit)
2    local player = game:GetService("Players"):GetPlayerFromCharacter(hit.Parent)
3    if player then
4        player.leaderstats.Cash.Value = 0
5    end
6end

1 answer

Log in to vote
0
Answered by 5 years ago

You forgot to add a "Touched Event" onto your script. This should work:

1function onTouched(hit)
2    local player = game:GetService("Players"):GetPlayerFromCharacter(hit.Parent)
3    if player then
4        player.leaderstats.Cash.Value = 0
5    end
6end
7script.Parent.Touched:Connect(onTouched)

Hope this helps, LennyPlayzYT

0
Yes It works! Christopher_magical 9 — 5y
Ad

Answer this question