01 | function 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 temp 2 = nil |
08 | for x = 1 , #list do |
09 | temp 2 = list [ x ] |
10 | if (temp 2. className = = "Model" ) and (temp 2 ~ = script.Parent) then |
11 | temp = temp 2 :findFirstChild( "HumanoidRootPart" ) |
12 | human = temp 2 :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 |
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.
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.
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
1 | function follow() |
2 | local hp = script.Parent.Humanoid.Health |
3 | if hp < 100 then |
4 | end |
5 | -- the follow player script |
then at the bottom you can try this
1 | script.Parent:Connect(follow) |