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 4 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.

function onTouched(hit)
    local player = game:GetService("Players"):GetPlayerFromCharacter(hit.Parent)
    if player then
        player.leaderstats.Cash.Value = 0
    end
end

1 answer

Log in to vote
0
Answered by 4 years ago

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


function onTouched(hit) local player = game:GetService("Players"):GetPlayerFromCharacter(hit.Parent) if player then player.leaderstats.Cash.Value = 0 end end script.Parent.Touched:Connect(onTouched)

Hope this helps, LennyPlayzYT

0
Yes It works! Christopher_magical 9 — 4y
Ad

Answer this question