Animation load not loading animations

  1. What do you want to achieve? Keep it simple and clear!
    making it work the error is: Cannot load the AnimationClipProvider Service
  2. What is the issue? Include screenshots / videos if possible!
    image
    on line 13
  3. What solutions have you tried so far? Did you look for solutions on the Developer Hub?
    looked everywhere thinking it might be a bug…
local Animations = game:GetService("ReplicatedStorage").Animations
game.Players.PlayerAdded:Connect(function(player)
	player.CharacterAdded:Connect(function(character)

		local carryAnimation = Instance.new("Animation")
		carryAnimation.AnimationId = "rbxassetid://16999348116"
		carryAnimation.Name = "Carry"

		local humanoid = character:WaitForChild("Humanoid")
		local animator = humanoid:WaitForChild("Animator")
		local carryAnimTrack = animator:LoadAnimation(carryAnimation)

	end)    
end)
2 Likes

The code to load the animation is good. Maybe try to load it on a Local Script that you put in StarterCharacterScripts . Animation for your character should be loaded and played localy , but i doubt if this is why your script doesn’t work

1 Like

Yea man doesn’t make sense why it wouldn’t work from the server it won’t change anything if I put it in an local script as that’s not the issue, also I’m pretty sure U can load the animations from the server to each player locally and you can also play the animation from the server to a specific player locally if you get me

1 Like

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.