Hello! I was creating a custom bubble chat script(the new customizations), But the script I made seems not to work. Does anyone know how to solve this?
local ChatService = game:GetService(“Chat”)
ChatService.BubbleChatEnabled = true
local bubbleChatSettings = {
BackgroundColor3 = Color3.fromRGB(145, 0, 0),
TextSize = 20,
Font = Enum.Font.Creepster,
BubbleDuration = 10
}
ChatService:SetBubbleChatSettings(bubbleChatSettings)
(First post sorry if not in correct category.)