Hide/Remove Roblox core GUI buttons

I was wondering if it was possible to remove the core GUI buttons on the top left of the screen, specifically these buttons.
Screenshot 2024-04-02 at 6.15.05 PM

If there is a way, or a post already made explaining how, let me know!

2 Likes

You can’t remove the Roblox icon button but I believe that you can remove the chat icon by disabling the chat

1 Like

There is a whole section in the documentation about it:

Using a LocalScript in StarterPlayerScripts you can do this:

local StarterGui = game:GetService("StarterGui")
StarterGui:SetCoreGuiEnabled(Enum.CoreGuiType.Chat, false)

There are several other core GUI elements that you can disable as well.

Like @szar20042 said, you cannot remove the Roblox icon button.

2 Likes

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.