How to disable ChatWindow but not ChatBar

I’m trying to disable the Window but just leave the bar for that people can type.

I don’t know what else to do… help me, thanks! sdsdsdsdsdsdsdPNG
^^^ “” means that I have no idea of what to put :smile:

13 Likes

In your game’s settings (in the home tab) you can select chat type. If you set it to bubble the window gets removed but the bar will remain along with the messages above players heads. If you need to do it from a script however, I can’t help you there… XD

4 Likes

Inside a local script in ReplicatedFirst:

local ChatService = game:GetService("Chat")
ChatService:RegisterChatCallback(Enum.ChatCallbackType.OnCreatingChatWindow, function()
	return {BubbleChatEnabled = true, ClassicChatEnabled = false}
end)
59 Likes

Be sure to mark this as a solution if it works for you!

4 Likes

Please use the search bar next time to find if your question has already been asked and resolved before. I answered this exact question some time ago, which @L7_M’s post contains said solution.

8 Likes

I would of put a solution too for ya :slight_smile: Thanks!

1 Like