After disabling the top black bar, how would I make the rest of the StarterGUI designs to cover over it?
Maybe this will help: ScreenGui | Documentation - Roblox Creator Hub Alternatively, you can set the position y to {0,-36}
2 Likes
Would this be a valid script to make it work?
pcall(function()
local starterGui = game:GetService('StarterGui')
starterGui:SetCore("TopbarEnabled", false)
starterGui:SetCore("IgnoreGuiInset", true)
end)
No because IgnoreGuiInset is a property of ScreenGui, not StarterGui.
So how would I enable it to be true?
You have to do it for each ScreenGui
Can you elaborate on what you mean by that? Is it possible for you to show a statement on IgnoreGuiInset?
ScreenGui Object
the checkbox
the code: screenGui.IgnoreGuiInset = true
where screenGui
is any ScreenGui instance
2 Likes