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

How to make an enemy target and follow ONLY after being hit?

Asked by 4 years ago
01function findNearestTorso(pos)
02    local list = game.Workspace:children()
03    local torso = nil
04    local dist = 60
05    local temp = nil
06    local human = nil
07    local temp2 = nil
08    for x = 1, #list do
09        temp2 = list[x]
10        if (temp2.className == "Model") and (temp2 ~= script.Parent) then
11            temp = temp2:findFirstChild("HumanoidRootPart")
12            human = temp2:findFirstChild("Humanoid")
13            if (temp ~= nil) and (human ~= nil) and (human.Health > 0) then--and not temp.Parent:findFirstChild("NPC") then
14                if (temp.Position - script.PartSu.Position).Magnitude < dist then
15                    torso = temp
View all 33 lines...

This is my current script which is super glitchy due to the bottom part. When more than 1 enemy is around its like the enemy always runs back to PartSu.Position.

2 answers

Log in to vote
0
Answered by 4 years ago

What I would do is use a StringValue and name it something like Tag and put it into the humanoid of the NPC. Then, for my damaging script, each time I hit something, I would look for Tag in their humanoid. If there is Tag in their humanoid, then change the value to the player who hit the NPC. Then, in the NPC script, I would use a .Changed event for the Tag to check whenever the value is changed. That would be the target.

Ad
Log in to vote
0
Answered by 4 years ago

ok idk if this works, but if the enemy gets hit it should take damage so lets say the max health is 100 then you could put this at the start of the script

1function follow()
2local hp = script.Parent.Humanoid.Health
3if hp <100 then
4end
5-- the follow player script

then at the bottom you can try this

1script.Parent:Connect(follow)

Answer this question