Just wondering if anyone could assist me with removing this button.
Remove the new Expand/Collapse button in Roblox Studio
I currently want to remove most of the Core Gui but this button still doesn’t remove
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
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.