I am trying to make a script that adds 5 to a players money everytime it hits a part called Money collector. The script is a local script and it is in StarterCharacterScripts.
local money=game.Players.LocalPlayer.leaderstats.money local part=game.workspace.MoneyCollector part.Touched:Connect(function(hit) if hit.name=="MoneyPart" then money.Value=money.Value+5 end end)
no error pops up it just doesnt work
local money=game.Players.LocalPlayer.leaderstats.money.Value -- Forgot the .Value <3 local part=game.workspace.MoneyCollector part.Touched:Connect(function(hit) if hit.name=="MoneyPart" then money.Value=money.Value+5 end end)
~ SinfullyLucky#7153 ????????????