Change New Bubble Chat Colors

Hey devs! I just found out the new bubble chat is now in Studio. And I read the post for the release of it. It says that the features in the topic are already added in. I wanted to change the back ground color and text color. I am wondering if I screwed it up because it isn’t working. And the script is under the chat category thing.

local settings = 
	{BackgroundColor3 = Color3.fromRGB(33, 73, 250),
TextColor3 = Color3.fromRGB(255, 255, 255),
	game:GetService("Chat"):SetBubbleChatSettings(settings)
end)
1 Like

I assume this is because the settings does not have a ending }. Here is a fixed version of your script:

local settings = {
	BackgroundColor3 = Color3.fromRGB(33, 73, 250),
	TextColor3 = Color3.fromRGB(255, 255, 255)
}
game:GetService("Chat"):SetBubbleChatSettings(settings)
1 Like

It still doesn’t work :confused: Did I put the script in the right place? Did I create the right type or script?

It should be a local script inside of StarterGui. (or anywhere else localscripts work)

1 Like

Ok I will try that. Thank you!

1 Like