Is there a way to disable this playerlist/leaderboard that's on console?

I’m working a game with my friend and I’ve created a custom playerlist for the game so the default playerlist had to be disabled but for some reason the default one on console doesn’t get disabled. The reason why I ask this question was because I made a setting to where you can have your stats on the leaderboard hidden from other players but this does not apply to the default leaderboard

The playerlist I’m talking about:

If anyone knows how to actually disable this then let me know. I’m new to asking question on the Devforum so if I put this in the wrong category let me know

Here’s proof that the default playerlist is disabled:

local starterGui = game:GetService("StarterGui")
starterGui:SetCoreGuiEnabled(Enum.CoreGuiType.Backpack, false)
starterGui:SetCoreGuiEnabled(Enum.CoreGuiType.SelfView, false)
starterGui:SetCoreGuiEnabled(Enum.CoreGuiType.EmotesMenu, false)
starterGui:SetCoreGuiEnabled(Enum.CoreGuiType.PlayerList, false)

I don’t think you can, you have to make a custom leaderboard system instead, like dont store stuff in the “leaderstats” folder.

I didn’t know that, but thanks for telling me. Wish Roblox would let this do that but thanks for giving me a solution

1 Like

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.