Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

How can I remove menu chat?

Asked by 4 years ago

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.

0
https://devforum.roblox.com/t/enable-bubble-chat/187719 <-- This will help you get an idea how to remove the chat menu Nguyenlegiahung 1091 — 4y
0
Since it worked, you should accept his answer. zandefear4 90 — 4y
0
I didn't know how. SlowNonCreeper007 -3 — 4y

1 answer

Log in to vote
0
Answered by
imKirda 4491 Moderation Voter Community Moderator
4 years ago

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.

0
Thank You, this worked. SlowNonCreeper007 -3 — 4y
Ad

Answer this question