|
| 06 May 2015 05:58 PM |
-Im trying to make a script where the npc follows you-
local larm = script.Parent:FindFirstChild("Left Arm") local rarm = script.Parent:FindFirstChild("Right Arm")
function findNearestTorso(pos) local list = game.Workspace:children() local torso = nil local dist = 100 local temp = nil local human = nil local temp2 = nil for x = 1, #list do temp2 = list[x] if (temp2.className == "Model") and (temp2 ~= script.Parent) then temp = temp2:findFirstChild("Torso") 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.1) local target = findNearestTorso(script.Parent.Torso.Position) if target ~= nil then script.Parent.Humanoid:MoveTo(target.Position, target) end end |
|
|
| Report Abuse |
|
|
| |
|
Cav33
|
  |
| Joined: 04 Sep 2012 |
| Total Posts: 1375 |
|
|
| 06 May 2015 06:16 PM |
What is exactly the problem?
"Don't work" could mean tons of things in programming! |
|
|
| Report Abuse |
|
|
|
| 06 May 2015 06:32 PM |
| the npc isn't following me |
|
|
| Report Abuse |
|
|
|
| 06 May 2015 07:26 PM |
| Looks like the zombie follow script ya got there |
|
|
| Report Abuse |
|
|