Bubble box Transparency?

Is it possible to have the default bubble chat’s white bubble transparent? I’d like to have it so that when the person says something the text is the same transparency but the bubble is see through, sorry if it’s hard to understand.

TLDR; Make chat bubble transparent but not text.

This might help.

Or this.

I’ve looked through those but from my understanding they make the entire bubble chat transparent including the text.

You can use a background gradient and change the transparency.

Example script:

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

local bubbleChatSettings = {
	BackgroundGradient = {
		Enabled = true,
		Rotation = 90,
		Color = ColorSequence.new(Color3.fromRGB(255, 255, 255), Color3.fromRGB(255, 255, 255)),
		Transparency = NumberSequence.new({
			NumberSequenceKeypoint.new(0, 0.2),
			NumberSequenceKeypoint.new(1, 0.5)
		})
	}
}
ChatService:SetBubbleChatSettings(bubbleChatSettings)
1 Like