Animation won't stop even when told to on unequipping a tool? [Read Desc]
I am making a game which involves me to have a animation when the tool isn't used when its equipped. However while I have gotten the equipping animation down when I unequip the tool it wont stop. In the output it says "attempt to call a nil value." Again I'm not wanting a remodel of the script I want to know how to fix it.
The script:
03 | local photographer = game.Players.LocalPlayer |
04 | local AnimationID = script.ID.Value |
05 | local tool = script.Parent |
06 | Humanoid = photographer.Character.Humanoid |
09 | function onActivation() |
10 | if deb = = false then deb = true |
11 | Humanoid.WalkSpeed = 0 |
12 | game.ServerScriptService.Events.AddPhotos:FireServer() |
13 | local animation = Instance.new( "Animation" ) |
14 | animation.Name = "Shoot" |
15 | animation.Parent = photographer |
17 | local animTrack = Humanoid:LoadAnimation(animation) |
21 | Humanoid.WalkSpeed = 16 |
27 | local anim = Instance.new( "Animation" ) |
30 | local h = Humanoid:LoadAnimation(anim) |
36 | script.Parent.Equipped:Connect(onEquipped) |
37 | script.Parent.Unequipped:Connect(unEquipped) |
38 | script.Parent.Activated:Connect(onActivation) |
If anyone knows the reason can you please help. Thanks.