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:
- The project is completely mine
- The animation is mine and I already saved it in my inventory
- 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)