Microphone Button isn't matching the Bubble Chat Configuration

Microphone Icon looks like this:

When it’s supposed to look like this
image_2023-07-31_214630666

I’m not sure if this is a bug or if the new TextChatService API is messing with it. It was working fine prior to this update.

task.wait(3)
local ChatService = game:GetService("Chat")
ChatService:RegisterChatCallback(Enum.ChatCallbackType.OnCreatingChatWindow, function()
	return {BubbleChatEnabled = true, ClassicChatEnabled = false}
end)

game.StarterGui:SetCoreGuiEnabled(Enum.CoreGuiType.PlayerList, false)

local ChatService = game:GetService("Chat")
ChatService.BubbleChatEnabled = true
local bubbleChatSettings = {
	CornerEnabled = false,
	TailVisible = false,
	TextSize = 20,
	TextColor3 = Color3.fromRGB(221, 255, 246),
	Font = Enum.Font.Fantasy,
	Padding = 15,
	VerticalStudsOffset = 2,
	BackgroundImage = {
		Image = "rbxassetid://12970121757",
		ScaleType = Enum.ScaleType.Slice,
		SliceCenter = Rect.new(27, 32, 42, 38),
		SliceScale = 0.8,
	}
}
-- Apply the settings
ChatService:SetBubbleChatSettings(bubbleChatSettings)

EDIT:

I tried switching off of LegacyChatService to TextChatService and the microphone background was still there.

EDIT 2:

Put the script in a game all by itself, the microphone background was still there. Thinking this an issue with ROBLOX.

2 Likes

Yeah it seems to be an issue following the addition of the face trackers. Hoping it’ll be fixed soon.

2 Likes

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