Disable ... menu in the right corner

I want to disable this thing:

img

that shows up in right corner without disabling the topbar. Is this possible?

2 Likes

[didnt notice you said without removing top bar]
Try StarterGui:SetCoreGuiEnabled(Enum.CoreGuiType.PlayerList)
then do that for backpack

That’s not what I want. I want to have Roblox chat and emotes wheel, however emotes wheel makes the … menu to show up.

1 Like

Let me do some digging to see if there’s a way to disable that.

Alright so it looks like the core gui is a bit underdocumented.
I can’t find anything regarding what the UI elements are titled nor how to manipulate them.

Unfortunately it doesn’t seem that we can disable it without using StarterGui:SetCoreGuiEnabled(Enum.CoreGuiType.All, false) or without using StarterGui:SetCore("TopbarEnabled", false).

Using the first method is more reliable.

can’t you use

StarterGui:SetCoreGuiEnabled(Enum.CoreGuiType.All, false)
StarterGui:SetCoreGuiEnabled(Enum.CoreGuiType.Backpack, true)

This would disable everything then enable backpack again or change backpack to what you want enabled

I am disabling everything in my game except chat and emotes menu. My question was to disable … menu in right corner that appears when I enable emotes menu.