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.
Hello developers!
Last year, we completely reworked the in-game bubble chat . We’ve been listening to your feedback and are excited to release even more improvements + customization features!
(if you haven't already, here's how you can enable bubble chat)
New Customization Options
We’ve added many new settings through the SetBubbleChatSettings API to support things like: images, gradients, and better animations.
Here are just a few of the additional customization options that have been added…
This might help.
Or this.
https://developer.roblox.com/en-us/api-reference/function/Chat/SetBubbleChatSettings
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