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

AnimationController not playing slash animation for my tool?

Asked by 2 years ago

As the name says, the tool that uses AnimationController doesn't play the slash animation

script:

local Tool = script.Parent
local AnimationController = Tool.AnimationController
local Animator = AnimationController.Animator
local Animation = Animator.SlashAnim
local AnimationTrack

Tool.Activated:Connect(function()
    AnimationTrack = AnimationController.Animator:LoadAnimation(Animation)
    AnimationTrack:Play()
end)
1
humanoid? Puppynniko 1059 — 2y

Answer this question