Achieving old chatbar behaviour is no longer possible

Hello.

In my game, I have a custom chat, but I want to use the roblox chatbar. Unfortunatly, it appears that that option has been removed from place settings following the move to the new develop page. I tried other solutions on the forum, but none of them are working:

local Chat = game:GetService("Chat")

Chat:RegisterChatCallback(Enum.ChatCallbackType.OnCreatingChatWindow, function()
	return {
		BubbleChatEnabled = true,
		ClassicChatEnabled = false,
	}
end)

How would I achieve this behavior in modern roblox?

Here is an image of what I want to achieve from the past:
image

Thanks,
– Ham

Nvm, found a super hacky solution.

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