I’m having trouble getting bubble chat to work properly.
- TextChatService is enabled.
- ChatWindowConfiguration is disabled.
- Even when I enable ChatWindowConfiguration, bubble chat still doesn’t show — although messages appear in the chat window.
- BubbleChatConfiguration is enabled.
- I also have a LocalScript placed in ReplicatedFirst with the following code:
local ChatService = game:GetService("Chat")
ChatService:RegisterChatCallback(Enum.ChatCallbackType.OnCreatingChatWindow, function()
return {BubbleChatEnabled = true}
end)
Despite all of this, bubble chat still isn’t showing above players’ heads.
Any ideas on what might be going wrong?