Why doesn't my animation play in online mode?
I'm making some tools that rely on animations to work. However, the animations continue to break and not work in online mode. They may occasionally work in solo mode, but then they break, and I have to go into the animation object and cut the code, then paste it back in. It keeps working and then breaking like that and I'm sick of it! Please help! Everything is defined and stuff, just the animation continues to break.
Posted below is the code in case there are any scripting errors.
01 | local animation = script:FindFirstChild( "swingAxe" ) |
07 | local swinging = script.Parent.swinging |
09 | function playSwingAnim() |
11 | local player = game.Players.LocalPlayer.Character |
13 | animTrack = player:FindFirstChild( "Humanoid" ):LoadAnimation(animation) |
15 | animTrack.KeyframeReached:connect( function (keyframeName) |
16 | if keyframeName = = "End" then |
18 | swinging.Value = false |
25 | script.Parent.Equipped:connect( function (m) |
26 | m.Button 1 Down:connect( function () |