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
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
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