How do I remove the top core UI

So theres 3 little dots in the corner that overlaps my ui, how do I disable this??? Ive disabled emotes and backpack but now theres a screenshot button. I’d like to keep emotes but just disable this little circle
image

1 Like

Use this in a LocalScript:

local StarterGui = game:GetService("StarterGui")
StarterGui:SetCoreGuiEnabled(Enum.CoreGuiType.PlayerList, false)
StarterGui:SetCoreGuiEnabled(Enum.CoreGuiType.Backpack, false)
StarterGui:SetCoreGuiEnabled(Enum.CoreGuiType.EmotesMenu, false)
1 Like

Unfortunately, this feature has not been added yet. But yes, if only there was an enumeration called screenshot.

you don’t

1 Like

This appears to be a relatively recent update, as there’s a bug report for it:

Apparently there are no changes to the list of CoreGuis you can disable either, so right now, there is nothing you can do.

I have a feeling Roblox will revert this shortly.

1 Like

Hmmm, I don’t know if they’ve changed the API but can you do this in a LocalScript inside StarterPlayerScripts:

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

I’ll definitely be releasing a 1.06 for my DisableCoreGUIFunctions if this is a new feature.


Don’t see the point of this feature anyways, you can do this through the menu already or press Windows + Shift + S.

This doesnt work because of the screenshot button

Sadly this just errors

So I guess theres no way to do it right now? Its crazy to me how there isnt basic controls over things like this

1 Like