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.
put this in a local script under StarterPlayerScripts
wait()
pcall(function()
local starterGui = game:GetService('StarterGui')
starterGui:SetCore("TopbarEnabled", false)
end)
1 Like
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?
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
game:GetService('Players').LocalPlayer:WaitForChild('PlayerGui'):SetTopbarTransparency(0)
1 Like