RobloxScripterAI
Discord ↗
Link Copied to Clipboard
×
"find a npc who needs help saying "come here and hurry please""
-- server script local npc = game.Workspace.NPC local player = game.Players:GetPlayerFromCharacter(npc) player.Chatted:Connect(function(message) if message == "come here and hurry please" then npc.Humanoid:MoveTo(player.Character.HumanoidRootPart.Position) end end)