Roblox Removed Ability to Disable CoreGUI?

Hello Everyone

Recently I noticed Roblox Scripts aren’t able to disable coregui such as the playerlist. I’ve tried multiple ways to disable it but it is still there. Due to this error my custom playerlist collides with the standard playerlist.

Can someone confirm if Roblox actually removed the ability to disable coregui?

1 Like

You said ‘Roblox Scripts’ do you mean a server script or local scripts. Only local scripts may change coregui

1 Like

No, I tested it and it still works just fine…
They wouldn’t remove it at all due to how many games it would break, much less overnight without any notice. Can I see your script?

are you disabling it too quickly? if its in replicated first it wont work

in startergui make a script that disables it like so:

-- this should be enough time to wait for it to load
local sg = game:GetService('StarterGui')

task.wait(0.01)

sg:SetCoreGuiEnabled(Enum.CoreGuiType.Backpack, false)

but no it works fine for me