RobloxScripterAI
Discord ↗
Link Copied to Clipboard
×
"Make a part when player touches it npc spawns and will say to me that i must die"
-- script for part local part = script.Parent local function spawnNPC(otherPart) local player = game.Players:FindFirstChild(otherPart.Parent.Name) if player then local NPC = game.ServerStorage.NPC:Clone() NPC.Parent = game.Workspace NPC.HumanoidRootPart.CFrame = player.Character.HumanoidRootPart.CFrame + Vector3.new(0, 5, 0) NPC.Humanoid.Sit = true wait(2) local dialog = Instance.new("Dialog") dialog.Parent = NPC dialog.InUse = false dialog.Purpose = "Death Message" dialog.DialogChoiceSelected:Connect(function(player, choice) if choice.Name == "DeathMessage" then player:Kick("You must die in Roblox") end end) local choice = Instance.new("DialogChoice") choice.Parent = dialog choice.Name = "DeathMessage" choice.UserDialog = "You must die in Roblox" choice.ResponseDialog = "Okay" end end part.Touched:Connect(spawnNPC)