Remove the top default gui bar?

https://gyazo.com/4074b214dabd8f6db6eb03ecdfb0e25f

Specifically this bar in the screenshot. How can I make it transparent?

5 Likes

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

Your solution actually removes the top bar and other features like Chat, Backpack and Playerlist.

OP’s message asks for either only removing the top bar or making it transparent.

Sorry for bumping this thread, but if people may Google (which I did and this thread came up) for how to remove the top bar but intend to only change the transparency instead of disabling Chat, Backpack, and Playerlist which this solution will do.

You can set the transparency of the top bar with a localscript.

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

This will retain the ability to still have the username on the top right, playerlist, and backpack tools. This simply makes the bar transparent.
FYI, you can only set this transparency to be either 1, .5, or 0.

19 Likes

That’s from July 2018. At that point, there was no option to actually hide the bar. The ability to set the transparency 1 was only implemented later that year. Good catch!

3 Likes