Customized Player List

This is probably really easy and self-explanatory to do, I just haven’t looked in the right spots. How do I customize the player list? I want it to look something like this:
image

Instead of this…
image

You just need to insert an object (preferably a folder) with the name leaderstats into the player instance, thne you add ValueBases (IntValues, StringValues, etc) into the leaderstats folder and it’ll add columns in to the PlayerList

1 Like

You’ll need to use leaderstats to create a custom leaderboard like this. I’ve included a hyperlink if you’d like to read more, but in summary, you have to do something like this:

local function makePlayerStats(player)

   local folder = Instance.new("folder")
   folder.name = "leaderstats"
   folder.Parent = player

   -- Any values you want on the leaderboard go here, i.e. coins = intValue

end

game.Players.PlayedAdded:Connect(makePlayerStats)
2 Likes

Great thank you guys! This makes things so much easier for me.