Animation Playing In Studio But Not In-Game. (I Own The Animation)

Hello there, I own this animation but it only works in studio and not in-game. Does anyone know why or is there a fix for this? This is the part of my script that makes the animation play. :arrow_down: My game is a group game so I wonder if I have to upload it to my group?

local MopAnimationTrack = Player.Character.Humanoid:LoadAnimation(MopAnimation)
MopAnimationTrack.Looped = true
MopAnimationTrack:Play()
			
Mopping = true
wait(5)
MopAnimationTrack:Stop()
Mopping = false

This is deprecated.

Use Animator to LoadAnimation instead, a child of the humanoid.

You got it correct. Animation has to be in the group to be used in group games.

2 Likes