Hello, I'm trying to get rid of the dark top bar by messing with the RobloxGui in the CoreGui but it doesn't seem to work.
Here's my code :
local CoreGui = game:GetService("CoreGui") CoreGui.RobloxGui.TopBarContainer.BackgroundTransparency = 1
The output throws this :
00:14:45.456 - An error occurred 00:14:45.457 - Script 'Players.Player1.PlayerGui.LocalScript', Line 3 00:14:45.457 - Stack End
Thanks in advance for any kind of help
It's simple, though will need to be done with a pcall function, which just give you access to hide it.
wait() pcall(function() local starterGui = game:GetService('StarterGui') starterGui:SetCore("TopbarEnabled", false) end)
One you put this inside a localscript, I prefer StarterScriptService, and it will hide the top bar.
Link to the page is here.
Pyrondon had the original answer.
Is there any way to keep the Chat, Backpack and Playerlist ? Or will I need to script them ?