I tried to make script that will play animation on player, it work on dummy but not on player.
Also i have this error: Cannot load the AnimationClipProvider Service.
It is basic script.
I searched in Google and in DevForum but i only found old method with humanoid.
local Players = game:GetService("Players")
local Animation = script.Animation
Players.PlayerAdded:Connect(function(Player)
Player.CharacterAdded:Connect(function(Character)
local Animator = Character:WaitForChild("Humanoid"):WaitForChild("Animator")
local Track = Animator:LoadAnimation(Animation)--Error is here
while true do
wait(2.02)
Track:Play()
end
end)
end)