How to change the Font of Bubble Chat

Hello! I’m a bit Stuck.
I’m changing my Game to a Spooky Theme (It’s Spooky Month remember!) and I cannot seem to change the Bubble Chat Font. I can change the Chat GUI Font, but not the Bubble Chat Font.

This Code is from the BubbleChat Script (edited but not working) on Line 38 to 46.

--[[ SCRIPT VARIABLES ]]
local CHAT_BUBBLE_FONT = Enum.Font.Creepster
local CHAT_BUBBLE_FONT_SIZE = Enum.FontSize.Size24 -- if you change CHAT_BUBBLE_FONT_SIZE_INT please change this to match
local CHAT_BUBBLE_FONT_SIZE_INT = 24 -- if you change CHAT_BUBBLE_FONT_SIZE please change this to match
local CHAT_BUBBLE_LINE_HEIGHT = CHAT_BUBBLE_FONT_SIZE_INT + 10
local CHAT_BUBBLE_TAIL_HEIGHT = 14
local CHAT_BUBBLE_WIDTH_PADDING = 30
local CHAT_BUBBLE_PADDING = 12
local CHAT_BUBBLE_FADE_SPEED = 1.5

As you can tell on the Second Line, I changed the Font to Creepster, but it’s still not working, and is using the New Bubble Chat Font.

Help?

Cheers, AridOats.

1 Like

If you are using the newly implemented bubble chat, you can run this instead:

local chat = game:GetService("Chat")
pcall(function()
    chat:SetBubbleChatSettings({
        Font = Enum.Font.Creepster,
    })
end)

Here is a link to the original post.

Here is a link for a method on using old bubble chat settings with the new bubble chat.

1 Like