I was wondering, how do you remove the default leaderboard. I was making a game and the default leaderboard is getting in the way. I have tried the free model scripts and it doesn't work.
Requests are against the rules, but I'll let it slide.
Create a new LocalScript in StarterGui and insert:
game.StarterGui:SetCoreGuiEnabled(Enum.CoreGuiType.PlayerList, false)
To restore it, use:
game.StarterGui:SetCoreGuiEnabled(Enum.CoreGuiType.PlayerList, true)