I have a leaderboard script, and I have a leaderboard for Cash, but when I play the game, it does not show Wins and Cash it just shows Cash.
Script:
01 | for _, player in pairs (game.Players:GetPlayers()) do |
02 | local stat = player.leaderstats.Wins --When the error appears |
03 |
04 | WinsLB:SetAsync(player.UserId, stat.Value) |
05 | end |
06 |
07 | for _, frame in pairs (leaderboard.SurfaceGui.Holder:GetChildren()) do |
08 | if frame:IsA( "Frame" ) then |
09 | frame:Destroy() |
10 | end |
11 | end |
12 |
13 | updateLeaderboards() |
14 | wait( 10 ) |
if you're constantly going to loop through the players and get their "Wins" its best if you wait for it or pass them and come back the next time. Theres a chance that a new player joined while you're looping and the stats have not been created yet.
1 | for _, player in pairs (game.Players:GetPlayers()) do |
2 | local stat = player:WaitForChild( "leaderstats" ):WaitForChild( "Wins" ) |
3 | WinsLB:SetAsync(player.UserId, stat.Value) |
4 | end |