Remove Core Gui

Just wondering if anyone could assist me with removing this button.

  1. Remove the new Expand/Collapse button in Roblox Studio

  2. I currently want to remove most of the Core Gui but this button still doesn’t remove
    image

  3. This is my current script

--// Guis
local CoreGui = game.StarterGui
local Reset = game:GetService("StarterGui")
local Players = game:GetService("Players")
local player = Players.LocalPlayer

local PlayerGui = player:WaitForChild("PlayerGui")
--// Main
task.wait(1)
CoreGui:SetCoreGuiEnabled(Enum.CoreGuiType.All, false)
Reset:SetCore("ResetButtonCallback" ,false)
if PlayerGui then
	local freecamCheck = PlayerGui:WaitForChild("Freecam") 
	if freecamCheck then
		freecamCheck:Destroy() 
	end
end
1 Like

i’ve never seen that button, maybe i have to update my studio but i dont see it

it only appears in studio
may or may not be a beta feature

I don’t think it is removable by scripts at the moment. As someone mentioned it may be a beta feature, and if so you can just disable the beta feature.

oh, well i didnt know that.Thanks!

Here the Announcement post about this Studio Only Beta at the Moment.

As far as I’m aware you can’t remove it and roblox is trying this out

1 Like

This sure looks like a Unity icon to me.

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