How to make an NPC chat in roblox code example
Example: How to make an NPC chat in roblox
local ChatService = game:GetService("Chat")
local part = Instance.new("Part")
part.Anchored = true
part.Parent = workspace
ChatService:Chat(part, "Blame John!", "Red")