My npcs both have follow scripts but when they are next to each other they go for each other and even when i get close they still wont attack me can somebody please help
01 | local larm = script.Parent:FindFirstChild( "HumanoidRootPart" ) |
02 | local rarm = script.Parent:FindFirstChild( "HumanoidRootPart" ) |
03 |
04 | function findNearestTorso(pos) |
05 | local list = game.Workspace:children() |
06 | local torso = nil |
07 | local dist = 20 |
08 | local temp = nil |
09 | local human = nil |
10 | local temp 2 = nil |
11 | for x = 1 , #list do |
12 | temp 2 = list [ x ] |
13 | if (temp 2. className = = "Model" ) and (temp 2 ~ = script.Parent) then |
14 | temp = temp 2 :findFirstChild( "HumanoidRootPart" ) |
15 | human = temp 2 :findFirstChild( "Humanoid" ) |
I think a way to fix this is to put a Value or distinct object inside of the npc, then have the script check if they are a npc or not, that way they can be named different things. Example:
A boolvalue that is true called NPC inside of the... NPC. Then in the script:
01 | while true do |
02 | wait(math.random( 1 , 2 )) |
03 | local target = findNearestTorso(script.Parent.HumanoidRootPart.Position) |
04 | if target ~ = nil then |
05 | local npc = target:FindFirstChild( "NPC" , true ) --[[The part I added]] |
06 | if npc = = nil then |
07 | script.Parent.Humanoid:MoveTo(target.Position, target) |
08 | end |
09 | end |
10 |
11 | end |
Hope this helps!
try to change the name of the humanoids inside of your npcs, and change all the scripts inside of them accordingly