Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
1

How do i get the npcs to NOT attack each other?

Asked by 4 years ago

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

01local larm = script.Parent:FindFirstChild("HumanoidRootPart")
02local rarm = script.Parent:FindFirstChild("HumanoidRootPart")
03 
04function 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 temp2 = nil
11    for x = 1, #list do
12        temp2 = list[x]
13        if (temp2.className == "Model") and (temp2 ~= script.Parent) then
14            temp = temp2:findFirstChild("HumanoidRootPart")
15            human = temp2:findFirstChild("Humanoid")
View all 37 lines...

2 answers

Log in to vote
1
Answered by 4 years ago

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:

01while 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 
11end

Hope this helps!

0
wait where in the script do i put this tho coolmanHDMI 72 — 4y
0
nvm i figured it out thx for the help! coolmanHDMI 72 — 4y
0
No problem! fighterkirbyzx 102 — 4y
Ad
Log in to vote
0
Answered by
quinzt 201 Moderation Voter
4 years ago

try to change the name of the humanoids inside of your npcs, and change all the scripts inside of them accordingly

0
i thought about that but then i was still skeptical but i guess i can try coolmanHDMI 72 — 4y

Answer this question