Gui is not fully covering the screen

Here is a picture look at the top of the frame and how to fix

--before

– after

2 Likes

Go to your screengui and set ignoreGuiInset to true. It would be nice if you could edit the title so it’s more specific to your problem. That way, others can search for it if they’re having a similar problem.

3 Likes

get rid of the disable topbar scripts as well, roblox deprecated the thing that made those work

also how would i make this atomatic like

local gui = game.StarterGui:GetChildren
gui.ignoreGuiInset = true

Players don’t see what’s in the startergui. Instead, whatever is in there gets replicated to their playerGui.
Your code should look something like this:

local screenGui = game:GetService('Players').LocalPlayer:WaitForChild('PlayerGui'):WaitForChild("ScreenGui")
screenGui.ignoreGuiInset = true