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

FilteringEnabled Currency Configure?

Asked by
Acheo 230 Moderation Voter
8 years ago

If I change a player's leaderstats currency from the server, will it configure for all clients?

  • ServerScript
game.Players.Acheo.leaderstats.Points.Value = 1337
0
if you designate the player, like Acheo, why would it go for them all, wouldn't it go for just you? theCJarmy7 1293 — 8y
0
Do you understand filteringenabled? It seems like you don't, (This isn't meant to be rude) Acheo 230 — 8y
2
He is wanting to know if a server script changes the value for one player, then if that change would replicate or be made visible to all other clients. Which is yes since a server side action replicates to all clients. M39a9am3R 3210 — 8y
0
M3, message me on the site. We have a lot of catching up to do. Acheo 230 — 8y

1 answer

Log in to vote
-1
Answered by
Kryddan 261 Moderation Voter
8 years ago

Like theCJarmy7 said if you only try to change the value for one player as you did in your example then it only would change for that player, even if filteringenabled is set to true. But if you would output their points in a GUI or leaderboard, something like that it will show up for everyone else. If you would want to change all players value just use a for loop that runs through every single player and changes their value.

Ad

Answer this question