Hello, I’m using GGScoreoid lib to show highscores and so on.
Everything’s working except showing all existing usernames.
How to show all existing usernames using GGScoreoid library?
P.S.
Get scores local onComplete = function( scores ) for i = 1, #scores, 1 do print( scores[i].username, scores[i].score ) end end scoreoid:getScores( orderBy, order, limit, startDate, endDate, platform, difficulty, onComplete )
– this is NOT WORKING because scores[i].username returns NIL. 