I explained it mostly in the title but I want to have the backpack (I really don’t mind if it has the extra space but It would be good if you could remove it) without having the 3 dots in the top right as I have a custom leaderboard which it interferes with, is this possible?
To remove the 3 dots, you would have to remove the PlayerList, and Backpack:
LocalScript in StarterGui
game.StarterGui:SetCoreGuiEnabled(Enum.CoreGuiType.Backpack,false)
game.StarterGui:SetCoreGuiEnabled(Enum.CoreGuiType.EmotesMenu,false)
game.StarterGui:SetCoreGuiEnabled(Enum.CoreGuiType.PlayerList,false)
``
2 Likes
game.StarterGui:SetCoreGuiEnabled(Enum.CoreGuiType.Backpack,false)
game.StarterGui:SetCoreGuiEnabled(Enum.CoreGuiType.PlayerList,false)
You just need to disable the Backpack & PlayerList CoreGui’s to achieve this. This is a local script inside the “StarterPlayerScripts” folder.
2 Likes