So when I play my animations in Roblox studio they seem to work but when I go in the game from the website the animations don’t play does anybody know why? Here’s one of the scripts
script.Parent.Equipped:Connect(function(Mouse)
Mouse.Button1Down:Connect(function()
local anim = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(script.Parent.Animation)
anim:Play()
end)
Animator is the instance of a Humanoid, it controls the playback of animation. Humanoid was deprecated for loading animation due to creating multiple animators for odd reasons in the backend.