Need help with changing colour of Bubble Chat

Hey, I was looking for a ‘Dark Mode’ sort of Bubble Chat for my game, however can’t seem to get it working, anyone know why?

Post I used: Dark Bubble Chat Scripting - #33 by realmile


image

You can use Chat:SetBubbleChatSettings instead if your using the new bubble chat.

game:GetService('Chat'):SetBubbleChatSettings({
    BackgroundColor3 = Color3.fromRGB(45, 52, 54),
    TextColor3 = Color3.fromRGB(255, 255, 255)
})
1 Like