How do I remove and add a CoreGui button?

I want to remove the three dots in the topright corner of the screen, it is bothering me that it covers my Gui a tiny bit. (See picture below)
image

I also want to add a backpack button next to the chat button.
image

I have absolutely no clue how to do neither.I would greatly appreciate if someone could help me out! Thanks!

1 Like

I believe this is the thing you are looking for.

https://developer.roblox.com/en-us/api-reference/function/StarterGui/SetCoreGuiEnabled

1 Like

It doesn’t answer my question on how to add a backpack button.
I can remove the three dots but it also disables the entire backpack.

This is an awesome module called TopBarPlus, it should help you

It allows you to create some topbar icons (they can be square, this one just uses text too), example:

1 Like

you cannot add or remove coregui, you should probably move your ui over a smudge
you can add a backpackgui button there but it wouldn’t be a coregui

game.StarterGui:SetCoreGuiEnabled(Enum.CoreGuiType.All, false)

Removes the three dots, then use top bar plus to add the backpack.

Whoops; misread, I think OP doesn’t want it to be “CoreGUI”, just where the CoreGUI is…

3 Likes

from what I know the dots can’t be removed, like the menu button.

The dots are chat… Menu is the roblox icon…

You can look at my original image to see

That looks pretty good! I will try it out first, and later come back to see if your suggestion worked.
Thanks!

The dots can be removed by calling SetCoreGuiEnabled(element, false) on all the entries that usually hide behind that context menu.

1 Like