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

Animation won't stop even when told to on unequipping a tool? [Read Desc]

Asked by 6 years ago

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:

01local deb= false
02local timeLength= 1
03local photographer = game.Players.LocalPlayer
04local AnimationID = script.ID.Value
05local tool = script.Parent
06Humanoid = photographer.Character.Humanoid
07 
08 
09function 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
View all 38 lines...

If anyone knows the reason can you please help. Thanks.

1 answer

Log in to vote
1
Answered by
ABK2017 406 Moderation Voter
6 years ago

Stop isn’t a valid member of animation, the AminationTrack has the Stop function.

Ad

Answer this question