How to Hide Top Core Gui

Hello,

I used to know but forgot :frowning:

How do you remove this top part of the Core GUI

You can’t however you can set the transparency to 1, so you can fully see through it, use a local script and run this code:

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

Are you sure?

I just discovered this thread : Hidable Topbar! It’s kinda “old”

1 Like

Ah, yes. I forgot about that.

You can use this by making a LocalScript, with the following code.

game.StarterGui:SetCore("TopbarEnabled", false)

If this helped please mark this as the solution to help others who come across the same question.

2 Likes

does this work inside Roblox studio cause for some reason it’s not working?

Where have you placed your script?

1 Like

Starter GUI and even tried in StarterPlayerScripts

It works for me, here is a test place you can use:
TopBarHidden.rbxl (17.2 KB)

1 Like

Wait so as soon as I add in my GUI, this doesn’t work

Are you trying to get the red bar to shift upwards to where the topbar is intended to be? On your ScreenGui, make sure the property IgnoreGuiInset is true. That’ll, regardless of if the topbar is hidden or not, automatically be shifted down by the 36 pixels that the topbar occupies.

2 Likes

Thank you dude! Yes I was also trying to do that. Sorry if I didn’t explain myself that well, not really that familiar with UI stuff

game.StarterGui:SetCoreGuiEnabled(Enum.CoreGuiType.All, false)