I have no idea why but my script when it gives the cash it dosent show up for other players on the leaderstats why is that?
Script : `wait(4)
while wait(0.5) do
if game.Players.LocalPlayer.Character.HumanoidRootPart.Velocity.Magnitude >= 40
then
wait(0.2)
game.Players.LocalPlayer.leaderstats.Cash.Value = game.Players.LocalPlayer.leaderstats.Cash.Value + 25
end
end`
The simple answer to that is you are using local player. When using local player the thing your trying to script only shows for that certain person. When in a local script just use remote events.
When adding cash you would want to insert remote events
Sorry being a bit late. Hope this helps!