Bubble Chat Issue

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

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

1 Like

You could just add a UiStroke to the textlabel, yellow blends into white easily

So is there no way to change the TextColor of the bubble chat ?

Hey everyone that is having this same issue I fixed it by disabling BubbleChatConfiguration so that the bubbles don’t show and then whenever a player chats I just called:

SystemTextChannel:DisplayBubble(Player.Character.Head, Message)

and it takes the custom properties of BubbleChatConfiguration I used!

2 Likes

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.