I’m basically making an eating animation but it doesn’t work. I have the script and everything. Animation ID, scripts checked multiple times, etc. Any help?
Script
local Burger = script.Parent
local EatAnimation = Burger.EatAnimationBurger.Equipped:Connect(function(Mouse)
Burger.Activated:Connect(function()
local Character = Burger.Parent
local AnimationTrack = Character.Humanoid:LoadAnimation(EatAnimation)
AnimationTrack:Play(5869896883)
end)
end)