-
What do you want to achieve? Keep it simple and clear!
I want to make the Chat Bubble appear over the Antlers. -
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.
-
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!