leaderboards is not updating for other player's values?
Is this how leaderboards is supposed to operate? If I use the "Test Server" and select 2 players, when I update the IntValue of Player1 to 500 dollars, on Player2's screen it still shows 0 dollars for Player1. Is this how it's supposed to work? How can I make it so that it will show other player's values? I thought Roblox does that for us?
here is teh code I use to make the leaderboards
1 | local leaderboardstats = Instance.new( "Model" , player) |
2 | leaderboardstats.Name = "leaderstats" |
3 | local moneyz = Instance.new( "IntValue" ) |
4 | moneyz.Parent = leaderboardstats |
5 | moneyz.Name = "Dollars" |