Remove the ROBLOX Topbar

How would I exactly remove the topbar?

1 Like

What do you mean by topbar, and wasn’t that already removed when they re-did the UI layout? Click Ignore GuiInset.

@vq9o

put this in a local script under StarterPlayerScripts

wait()
pcall(function()
	local starterGui = game:GetService('StarterGui')
	starterGui:SetCore("TopbarEnabled", false)
end)
1 Like

But keep the roblox button & chat.

What your code has done is disabled chat, but topbar is still there.

You mean make the topbar transparent, correct?

Edit: OH wait are you trying to make it so that the GUI will go over the topbar?

1 Like

Yeah, so my gui fits the whole screen.

have you put it under StarterPlayerScripts and is in a local script?

Here, PlayerGui | Documentation - Roblox Creator Hub

He needs to click ignore guiinset

Easy. Click the ScreenGui and click IgnoreGuiInset switched to ON. This allows the UI to bypass the scaling of the topbar

@vq9o

game:GetService('Players').LocalPlayer:WaitForChild('PlayerGui'):SetTopbarTransparency(0)
1 Like