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

How would you Change the Jump Animation?

Asked by
woodengop 1134 Moderation Voter
9 years ago

If you were to change the Jump Animation Would you Have to make the Animation Character Jump to?

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

Script

1 answer

Log in to vote
1
Answered by 9 years ago

http://wiki.roblox.com/index.php?title=Changing_default_character_animations Try this.

0
Game.Players.PlayerAdded:connect(function(player) while not player.Character do wait() end local character = player.Character local animateScript = character.Animate animateScript.jump.JumpAnim.AnimationId = 'http://www.roblox.com/asset/?id=' end) izanagi456 4 — 6y
0
Where do you put this? ChestplateCannon 0 — 6y
Ad

Answer this question