local player = game.Players.LocalPlayer
local humanoid = player.Character:WaitForChild("Humanoid")
local animation = humanoid:LoadAnimation(script.Parent.Animation)
player.CharacterAdded:Connect(function(character)
humanoid = character:WaitForChild("Humanoid")
animation:Play()
end)
Этот скрипт заставит роботика играть анимацию, когда игрок появится в игре. ^^