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

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:

01local larm = script.Parent:FindFirstChild("HumanoidRootPart")
02local rarm = script.Parent:FindFirstChild("HumanoidRootPart")
03local punchdist = 10
04local animation = Instance.new("Animation")
05animation.AnimationId = "http://www.roblox.com/Asset?ID=02568852350"
06local Humanoid = script.Parent:FindFirstChild("Robot")
07animTrack = Humanoid:LoadAnimation(animation)
08local CanPunch = true
09 
10function punch()
11    if CanPunch then
12        CanPunch = false
13        animTrack:Play()
14        wait(0.75)
15        animTrack:Stop()
View all 56 lines...

1 answer

Log in to vote
0
Answered by 6 years ago

NVM I found out what I did wrong & I fixed it.

2
Put [SOLVED] in title. yHasteeD 1819 — 6y
0
Jeah, Put [SOLVED] Paintertable 171 — 6y
Ad

Answer this question