I have 3 tools, but this plays the same animation over and over when they’re all different, much appreciated if you help
local Tool = script.Parent
local Animation = Tool.Animation
Tool.Activated:Connect(function()
local Character = Tool.Parent
local Humanoid = Character.Humanoid
local AnimationTrack = Humanoid:LoadAnimation(Animation)
AnimationTrack:Play()
end)
Then I’m pretty sure this is the issue.
Basically, when you equip a tool I’m pretty sure the built in “Equip” animation plays and loops. You know how if you equip a tool, the orientation of your arm changes? I’m not sure how you can remove that, but that’s basically the problem. The build in animation overlaps your custom animations(I think)