My frame is not fullscreen

How can I make the frame fullscreen?

2 Likes

Change the Size property to 1, 0, 1, 0?

1 Like

What’s at the top is called the Topbar. To disable it use the following code locally:

	local starterGui = game:GetService('StarterGui')
	starterGui:SetCore("TopbarEnabled", false)
end)

That won’t affect the Topbar.

1 Like

You could disable the topbar too but thats not what he wanted, he wanted the Frame to be fullscreen.

1 Like

Simply you could just simply enable IgnoreGuiInset (This will make everything in the screen gui ignore the top bar)

image

6 Likes

Thanks for the help!!This was the solution

1 Like

He* didn’t specify he wanted it closed, so I just explained what’s wrong and a simple way to fix it, I remember having that problem myself and not even realising it was due to the Topbar.

How have I never noticed this? Nice one

2 Likes