Hello, I just started using Roblox’s new TextChatService and I am having issues with the Bubble chat specifically. When I type my prefix color is correct, seen here:
But when I type the bubble also shows up in the same color, seen here:
You can barely see it because it’s yellow, and I have tried to fix this by altering the BubbleChatConfiguration by setting the color3 to black:
I also tried to to change the chat bubble message color whenever there is a Bubble added with this code:
SystemTextChannel.OnBubbleAdded = function(Message)
warn(Message.Text)
local BubbleProperties = Instance.new("BubbleChatMessageProperties")
BubbleProperties.TextColor3 = Color3.fromRGB(0, 0, 0)
BubbleProperties.TailVisible = true
return BubbleProperties
end
Yet nothing seems to work