Remove the top default gui bar?

Code’s really short for hiding it:

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

Stick it under StarterPlayerScripts and you should be good.

Check this out for more information:

13 Likes