Remove Top Bar To Make Room UI

Hi, so. I am making a game in which I want my GUI to be the only thing on screen is there a way to get the top bar and chat gone so my UI can expand? If so thanks.

1 Like

Set IgnoreGuiInset to true in your ScreenGui.

5 Likes

Is there also a way to hide chat?

You could use

game:GetService("StarterGui"):SetCoreGuiEnabled(Enum.CoreGuiType.All, false)
game:GetService("StarterGui"):SetCore("TopbarEnabled", false)

to hide most parts of CoreGui. This works best with what @Ty_IsHomeSchooled said.
To show CoreGui again, just replace false with true.

2 Likes