How to make a NPC Talk

How i can do a npc talk like players do, like a normal bubble chat

3 Likes

You can use a chat service!

local chat = game:GetService("Chat")
chat:Chat(script.Parent.Head,"I like cheese","White")
7 Likes
local Chat = game.Chat

local Object = game.Workspace.Part -- Example
local Message = "Hello"

local ChatColor = Enum.ChatColor.White

Chat:Chat(Object, Message, ChatColor)
5 Likes

Sorry to say this, I have already done a npc with can communicate with player’s normally through bubble chat in one of my games, but right now I don’t have the code.

2 Likes