Chat button grayed out

image
The chat button is grayed out on my game. I suspect it has something to do with my script for hiding the button, but it worked perfectly fine until today. Also, the script is meant to hide the chat button until the play button is pressed, which works fine, but when the chat is revealed, it’s grayed out.

1 Like

What are you using to hide the chat button? It’s best that you use SetCore

local StarterGui = game:GetService("StarterGui")

function SetChat(Value)
    StarterGui:SetCoreGuiEnabled(Enum.CoreGuiType.Chat, Value)
end

If you’re using something similar, and are getting this, then this is probably a bug regarding ROBLOX’s core-GUI. If this bug persists, then I highly recommend making a bug report in the Engine Bugs category.

Edit: This may be intentional to show a player that the chat has been disabled, but I’ve tried the script that I’ve provided you with, and it seems to solve your problem.

2 Likes

I will look into it, I’m not at home right now.

I am back now, the code my script uses to hide everything is
StarterGui:SetCoreGuiEnabled(Enum.CoreGuiType.All, false)
and the code used to open everything back up is
StarterGui:SetCoreGuiEnabled(Enum.CoreGuiType.All, true)