Help with chat bubbles

Next time make sure to use the search bar first, this question has been asked many times and solved many times. :slight_smile:

Here’s the code if you don’t want to read the entire topic:

local Chat = game:GetService("Chat")

Chat:RegisterChatCallback(Enum.ChatCallbackType.OnCreatingChatWindow, 
function()
    return {
        ClassicChatEnabled = false,
        BubbleChatEnabled = true,
    }
end)

Make sure to read the topic though so you can completely understand the code.

1 Like