New Roblox UI Scripting Issue

I am in the process of creating a new UI for my game, when you open the UI, It hides all the Roblox UIs until the new closes out of it, with the new Roblox UI I can’t find a way to hide it, Can somebody help me out?
image

1 Like

There is no way to hide it, the only fix to this, is to move the UI that’s stuck underneath it.

Do you know if there will be a way to hide the UI in the future?

try turning off the IgnoreGuiInset property i think that will probably work

1 Like

It’s currently game.StarterGui:SetCoreGui(Enum.CoreGuiType.All, false) in my script.

hmm yea i think maybe theres no way to fix this

Alright, Thank you. I’ll find out something.

Sadly, I do not believe there is a way to disable the new UI that appears in the top left. I believe this is for security reasons, but I’m unsure.

Theres currently no way to disable it, some players have already got it in thier roblox player client, not only studio. I wish there was an option to return it back to old one.

The chat option should at least be disappearing if you have your code set up like this. I know it’s not all of that gui, but it is something. I did this, and it removed the chat option:

local SG = game:GetService("StarterGui")

SG:SetCoreGuiEnabled(Enum.CoreGuiType.All, false)

This is a long shot, but it may be worth looking into. When testing in studio (or just playing) Ctrl + Shift + G (Windows) or Cmd. + Shift + G (Mac) removes all of that in game. It would most likely remove everything else too, but I haven’t tested it.

i hope roblox adds a feature where you could revert back to the old ui.

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.