Bubble chat not showing on custom character

Bubble chat is not working with my simple custom character. I type something in chat and no bubble shows up.
My character has a head and a humanoidrootpart.
I have tried swapping adornee name in BubbleChatConfiguration and nothing worked.
I have attached the file of the simple character and you could see what I mean

Posting it in help channel cause maybe im doing it wrong? No idea what to do

BubbleChatBug.rbxl (63.8 KB)

2 Likes

Make a script in serverscriptservice with the code down below

local players = game:GetService("Players")
local chat = game:GetService("Chat")

local function onPlayerAdded(player)
	local function onPlayerChat(msg)
		-- block showing chat bubbles for command messages
		if msg:sub(1, 1) ~= "/" then
			chat:Chat(player.Character.Head, msg)
		end
	end
	
	player.Chatted:Connect(onPlayerChat)
end
players.PlayerAdded:Connect(onPlayerAdded)
2 Likes