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

Short question | Leaderboards only updates for one person?

Asked by
RjsMc 48
5 years ago

So my game has filtering enabled on it, and when a local script updates the localplayers leaderstats, it only shows for the localplayer. Is that what happens from filtering enabled?

example:

script.Parent.MouseButton1Click:connect(function(plr)
game.Players.LocalPlayer:WaitForChild("leaderstats").Cash.Value = 100
end)

For the player it says he/she has 100, however for other players it shows 0. Is this how FE works?

0
You would need to use a remote event to ask the server to handle the purchase theCJarmy7 1293 — 5y

1 answer

Log in to vote
1
Answered by 5 years ago

Yes. That's the purpose of FE. Always keep in mind that certain values can be changed from the client, so be careful when creating things such as shops, so the player can't get everything basically for free using some simple hacks.

Ad

Answer this question