How do I make a Chat Bubble appear over the Character's Accessories?

  1. What do you want to achieve? Keep it simple and clear!
    I want to make the Chat Bubble appear over the Antlers.

  2. What is the issue? Include screenshots / videos if possible!
    The Character’s Antlers cover the Chat bubble, so in closer distances, it’s harder to read the Chat Bubble. I couldn’t use the NPC’s Char as the partOrCharacter in the function since it errors and gives me this Error: partOrCharacter is not a legal character.
    Screenshot_414
    Screenshot_415
    Screenshot_416

  3. What solutions have you tried so far? Did you look for solutions on the Developer Hub?
    I didn’t find any solutions.

I used ChatService’s Chat function to make the Chat Bubble, and used the Char’s head as the partOrCharacter.

This function is in a script inside of ServerScriptService

local function CreateChatBubble(instance, message)
	ChatService:Chat(instance, message, Enum.ChatColor.White)
end

CreateChatBubble(BubblxNpc.Head, "Welcome to the Dev Cave!")

Any help would be nice!

3 Likes

Have you trier putting tbe bubble inside of the highest hat?

You can put a chat bubble over any sort of basepart, so try doing that and it should work.

2 Likes

I already tried, it doesnt consider an Accessory as a part.
Screenshot_417

You need to do the accessory’s handle.

2 Likes

Ty, It works now!
Screenshot_418

1 Like

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.