I need Help with Bubble Chat

Hi I need help to activate bubble chat. Ever since Roblox removed it from the game settings page I can’t activate it. Please help. Thanks!

1 Like

Maybe you can check this out to help you enable it?

I completely forgot that existed, woops!

Go to the Chat Service in the Explorer (it’s at the bottom) and in properties toggle BubbleChatEnabled.

3 Likes

You can easily turn it on in Roblox Studio by enabling BubbleChatEnabled = TRUE. :smiley:

3 Likes

I am forced t script it but I don’t know the script all I know is its prob function bubble chat true or something.

So then just modify the property in a script.

game:GetService("Chat").BubbleChatEnabled=true
2 Likes

Tysm I was needing that I appreciate it @xZylter

Yeah I think you got your answers from the people above lol

1 Like

this is super SIMPLE all you got to do is scroll down in your workspace tab then click the chat thing

then in properties just enable BUBBLE CHAT

Insert a script inside of ServerScriptService then copy and paste what I have below.

local Chat = game:GetService("Chat")
Chat.BubbleChatEnabled = true

if Chat.BubbleChatEnabled == true then
	print("Enabled")
else
	print("Disabled")
end