Как сделать NPC в ROBLOX STUDIO, который убивает.

Аватар автора
NOKSTUDIO рутюб
Мой сайт на игру Сайт на игру в Gamejone Сайт на игру на itch.io nokstudi0.itch.io/horrornok я на itch.io nokstudi0.itch.io я на gamejone ___________________________________________________________________________ ВТОРОЙ СКРИПТ function onTouched(hit) local human = hit.Parent:findFirstChild("Humanoid") if (human ~= nil) then human.Health = human.Health - 100 end end script.Parent.Touched:connect(onTouched) ___________________________________________________________________________ ПЕРВЫЙ СКРИПТ local larm = script.Parent:FindFirstChild("HumanoidRootPart") local rarm = script.Parent:FindFirstChild("HumanoidRootPart") function findNearestTorso(pos) local list = game.Workspace:children() local torso = nil local dist = math.huge local temp = nil local human = nil local temp2 = nil for x = 1, do temp2 = list[x] if (temp2.className == "Model") and (temp2 ~= script.Parent) then temp = temp2:findFirstChild("HumanoidRootPart") human = temp2:findFirstChild("Humanoid") if (temp ~= nil) and (human ~= nil) and (human.Health ﹥ 0) then if (temp.Position - pos).magnitude ﹤ dist then torso = temp dist = (temp.Position - pos).magnitude end end end end return torso end while true do wait(0) local target = findNearestTorso(script.Parent.HumanoidRootPart.Position) if target ~= nil then script.Parent.Humanoid:MoveTo(target.Position, target) end end

0/0


0/0

0/0

0/0