Is there a way to get the old roblox top bar UI? Every game has adapted to their old ui and the new buttons don’t look good in my opinion and its too big. Also I don’t like that the chat being hidden with other buttons that aren’t even being used in my game.
Edit: Just found out you can’t even disable it with coregui, this is what you get if you disable everything.
The code:
game:GetService("StarterGui"):SetCoreGuiEnabled(Enum.CoreGuiType.All, false)
game:GetService("StarterGui"):SetCoreGuiEnabled(Enum.CoreGuiType.Chat, false)
game:GetService("StarterGui"):SetCoreGuiEnabled(Enum.CoreGuiType.Health, false)
game:GetService("StarterGui"):SetCoreGuiEnabled(Enum.CoreGuiType.Backpack, false)
game:GetService("StarterGui"):SetCoreGuiEnabled(Enum.CoreGuiType.PlayerList, false)