How do I get this NPC to stop moving towards the player when it punches? [Solved]
Asked by
6 years ago Edited 6 years ago
So I made this script to make an NPC punch when it gets within a certain distance of the player but the problem is that when it punches it doesn't stop moving towards the player which makes it hard to evade the punch. So how would I get it to stop when it punches the player?
Here is the code:
01 | local larm = script.Parent:FindFirstChild( "HumanoidRootPart" ) |
02 | local rarm = script.Parent:FindFirstChild( "HumanoidRootPart" ) |
04 | local animation = Instance.new( "Animation" ) |
06 | local Humanoid = script.Parent:FindFirstChild( "Robot" ) |
07 | animTrack = Humanoid:LoadAnimation(animation) |
20 | function findNearestTorso(pos) |
21 | local list = game.Workspace:children() |
29 | if (temp 2. className = = "Model" ) and (temp 2 ~ = script.Parent) then |
30 | temp = temp 2 :findFirstChild( "HumanoidRootPart" ) |
31 | human = temp 2 :findFirstChild( "Humanoid" ) |
32 | if (temp ~ = nil ) and (human ~ = nil ) and (human.Health > 0 ) then |
33 | if (temp.Position - pos).magnitude < dist then |
35 | dist = (temp.Position - pos).magnitude |
48 | local target = findNearestTorso(script.Parent.HumanoidRootPart.Position) |
50 | script.Parent.Robot:MoveTo(target.Position, target) |
51 | if punchdist > = (target.Position - script.Parent.HumanoidRootPart.Position).magnitude then |