I have been playing a lot of roleplay games recently, and I have noticed that many of them have bubble chat, and no menu chat. I figured out how to get the bubble chat, but I don't know how I can remove the menu, so you can only see the bubble chat.
You can use simple Local Script inside of a Replicated First:
local chat = game:GetService("Chat") chat:RegisterChatCallback(Enum.ChatCallbackType.OnCreatingChatWindow, function() return {BubbleChatEnabled = true, ClassicChatEnabled = false} end)
This one removes menu and also makes bubble chat.