As you know, the new top bar doesn’t support PlayerGui:SetTopBarTransparency(), so how do we do that now?
What you mean what you wanna delete?
Edit you can use this like
game.StarterGui:SetCoreGuiEnabled(Enum.CoreGuiType.All, false)
Yes, or you can disable stuff individually
game.StarterGui:SetCoreGuiEnabled(Enum.CoreGuiType.Health, false)
For example.
I don’t want to delete it, I just want to set it’s transparency temporarily to 0.
Would this extinguish the top bar so that if you set a frame it would cover the whole screen?
You can still enable it back again if you do
game.StarterGui:SetCoreGuiEnabled(Enum.CoreGuiType.Health, true)
You can just tick the IgnoreGuilnset property on the ScreenGui if you want that.
Hmm, ok thank you for your help, I’ll try that.
Thank you so much X) , I didn’t know about this feature till now.
I want to disable/ make the top bar transparent, Enum.CoreGuiType doesn’t show topbar in any of the options.
Local Script →
local starterGui = game:GetService("StarterGui")
starterGui:SetCore("TopbarEnabled", false)
Should do it.
Wouldn’t we do it for the player gui?
What do you mean? You can just use the :SetCore function of starterGui for that. As second argument, you have to type in if it should be disabled (false) or enabled (true).
No need to go into playerGui, just insert a local script inside of StarterPlayerScripts and paste that script in it.
I’ll explain, I am wanting to make the top bar transparent for a loading screen, so basically for specifically the player who joins, and then it goes back to normal after the loading screen is finished, so I will use this for the Player GUI right?
Then just set the Loading Screen IgnoreGuilnset to true (tick), that would be the best option in your case, then.
It would just “enable” the top bar again once your loading screen gets invisible/tweens away.
Post this in #platform-feedback:engine-bugs
Is it not already transparent? Can you send a screenshot of what it looks like for you currently?
A transparency of 0 would be opaque by the way.
Thats what i wanted to say because the old version was visible but topbar+ is better that confused me idk what he meant
You mean the old black background? You can just remake it by setting its position into Udim2.new(0,0,0,-36) Size: Udim2.new(0,0,0,36). Then change the transparency whatever you want.
do you mean the ignoreguiinset property from the gui?