Other players can't see my animations

First of all, thank in advance the people who take the time to read my problem

Context: What happens is I’m creating an idle animation and then using a script that’s in server script service I’m getting the player’s local Script Animate and I’m changing the default idle animation to my own

Points to keep in mind:

  1. The project is completely mine
  2. The animation is mine and I already saved it in my inventory
  3. I can see the animation on my character and also on the other players, but the other players don’t see anything

Thanks a lot!!

game.Players.PlayerAdded:Connect(function(player: Player) 
	player.CharacterAdded:Connect(function(character: Model) 
		if character then
			local animate = character:WaitForChild("Animate")
			
			animate.idle.Animation1.AnimationId = "rbxassetid://17808510570"
			animate.idle.Animation2.AnimationId = "rbxassetid://17808510570"
		end	
	end)	
end)

How long ago did you upload the animation?
I remember experiencing a bug where if I just uploaded it, only I can see it for a while

You could try making the animation priority really low and just loop the animation.

Maybe to the core or idle priority.