Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

How to change the idle animation?

Asked by 9 years ago

Trying to change the idle animation. I've tried 2 things..

Game.Players.PlayerAdded:connect(function(player)
    while not player.Character do wait() end
    local character = player.Character
    local animateScript = character.Animate
    animateScript.idle.Animation1.AnimationId = 'http://www.roblox.com/asset/?id=250720232'
end)

And

game.Players.PlayerAdded:connect(function(player)
        player.CharacterAdded:connect(function(character)
player.Character.Animate.idle.IdleAnim.AnimationId = "http://www.roblox.com/asset/?id=250721067"
end)
end)

They both did not work.Anybody got a suggestion for me? D:

0
Local or regular scripts? EzraNehemiah_TF2 3552 — 9y

Answer this question