I was wondering if it was possible to remove the core GUI buttons on the top left of the screen, specifically these buttons.
If there is a way, or a post already made explaining how, let me know!
I was wondering if it was possible to remove the core GUI buttons on the top left of the screen, specifically these buttons.
If there is a way, or a post already made explaining how, let me know!
You can’t remove the Roblox icon button but I believe that you can remove the chat icon by disabling the chat
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.
This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.