Hello, I Need help on how to make a custom leaderboard

Screenshot 2024-06-12 223117

Hello everyone! I would like to create a leaderboard of this style (Image), but I don’t know how, could someone explain it to me?

1 Like

This is pretty difficult. I never did it but I think how you do it is you disable the basic leaderboard (Disabling Default UI Elements | Documentation - Roblox Creator Hub) and then make the gui and code everything yourself.

1 Like

ive tried this before, i only struggled with the ui design, but its kind of like a ui library kind of sitation

  • first disable the default player gui
local StarterGui = game:GetService("StarterGui")
StarterGui:SetCoreGuiEnabled(Enum.CoreGuiType.All, false)
  • load your custom leaderboard
  • add events for when players leave/join to update it or when team changes, etc.
1 Like