BubbleChatSettings not changing

So I was trying to change the BubbleChatSettings, but it is not working. The script is a local script inside of StarterPlayerScripts.

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

local bubbleChatSettigs = {
	BackgroundColor = Color3.fromRGB(104, 104, 104),
	TextSize = 20,
	Font = Enum.Font.Antique,
	BubbleDuration = 7
}

Chat:SetBubbleChatSettings(bubbleChatSettigs)

Try this, I think it is BackgroundColor3 not BackgroundColor

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

local bubbleChatSettigs = {
	BackgroundColor3 = Color3.fromRGB(104, 104, 104),
	TextSize = 20,
	Font = Enum.Font.Antique,
	BubbleDuration = 7
}

Chat:SetBubbleChatSettings(bubbleChatSettigs)
2 Likes