I am trying to remove the icon that allows you to access inventory, emotes, leaderstats. I already disabled leaderstats but I want to know how to disable the more icon.
This may not be the MOST convenient (since this also disables the ScreenGui
which shows the Tool
's at the bottom of your screen) but it's the best I can do.
Insert a LocalScript
into StarterPack
, StarterCharacterScripts
, StarterGui
, etc.
wait() game.StarterGui:SetCoreGuiEnabled(Enum.CoreGuiType.PlayerList,false) game.StarterGui:SetCoreGuiEnabled(Enum.CoreGuiType.Backpack,false) -- you may not want this (since it also hides tools), but i can find an alternative solution if you'd like game.StarterGui:SetCoreGuiEnabled(Enum.CoreGuiType.EmotesMenu,false)
Hope this helps!