📜  如何在 roblox 中进行 NPC 聊天 - Lua 代码示例

📅  最后修改于: 2022-03-11 14:54:55.351000             🧑  作者: Mango

代码示例1
local ChatService = game:GetService("Chat")
 
local part = Instance.new("Part")
part.Anchored = true
part.Parent = workspace
 
ChatService:Chat(part, "Blame John!", "Red")