Ability to hide player info in the topbar

How to disable/hide this area shown in the image? I see some games has disable it
image

2 Likes

The only way to do that is to disable the topbar, but this has some caveats:

  • The hamburger button is still visible
  • A 13+ or -13 text label will still appear next to the hamburger
  • Backpack, Player List and Emote Wheel will be forcefully disabled
  • Chat will be disabled unless you fork it and enable ChatSettings.CHAT_ON_WITH_TOPBAR_DISABLED (or something)

To disable the topbar, run the following code in a LocalScript:

wait(2) -- allow the corescripts to load
pcall(function() -- SetCore should always be ran in a pcall
    game:GetService('StarterGui'):SetCore('TopbarEnabled', false)
end)
1 Like

If my post assisted you, please mark it as a solution (:white_check_mark:)

I already did , so please reflesh page and check if its already marked.