Issue with player list, chat and backpack

So when I published my recent update in my game, the chat, player list and backpack just disappeared. Does anybody know what’s causing this to happen?

1 Like

The only thing I know of that could cause this is a LocalScript in your game, where it could disable some of the CoreGui (the Roblox button at the top left can’t be disabled). Check your game for scripts.

You can detect if the player joins and instantly change the name of PlayerGui to remove the button.

I checked all my scripts I cant find what is disabling it.

99% sure it’s a disabler script like Epix said.
Did you use any models from the toolbox?

If you see something like “SetCoreGUI(“Chat”, false)” then remove it.

I don’t see any scripts with SetCoreGuiEnabled(Enum.CoreGuiType.Chat, false)

Looking at your explorer, seems like you have a lot of scripts, some of which could be malicious. A script could call the function without explicitly writing the text. Can you try disabling the scripts one by one to see if the issue goes away?

I disabled one by one but the chat was still disabled.

Try searching for require. There might be a configuration for an admin system or other model that disables the chat and backpack.

I have Adonis admin so it cant be that. and I checked all my config scripts none of them were malicious

There’s a property in Chat known as LoadDefaultChat (Chat | Roblox Creator Documentation)

Can you just make sure that it is true, otherwise I’d search for "SetCoreGuiEnabled" without any enums as someone may have assigned the enum to a variable

LoadDefaultChat was already set to true. This is all I found when I searched for SetCoreGuiEnabled.

Sorry for the delayed response, it looks like the loading gui hides all core gui
Then it probably errors and never re-enables everything. That’s probs where you should look

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