Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
1

How to remove the inventory/more icon??

Asked by 2 years ago
Edited 2 years ago

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.

1 answer

Log in to vote
1
Answered by 2 years ago

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!

0
Thank you so much this is exactly what i'm wanting theking66hayday 841 — 2y
Ad

Answer this question