I'm making a game which I want to differ from standard roblox. One of my ideas is to change the player's walking animations to my own ideas. However, I wan't to either remove or cancel out the jumping animation, as well as the animation where the player's arms "wave around in the air." For now I want to keep the other animations, but i want to overwrite those.
i have tried using a script to cancel out animation altogether and editing it, but i don't know how i would do so. here is the script i started out with, which i found on another forum post.
game.Players.PlayerAdded:connect(function(player)
player.CharacterAdded:connect(function(char)
char.Animate:destroy()
end)
end)
how would i only remove certain animations? |