My Script Is..
game.Players.PlayerAdded:connect(function(player) while not player.Character do wait() end local character = player.Character local animateScript = character.Animate animateScript.fall.Animation1.AnimationId = 'http://www.roblox.com/asset/?id=1635415594' end)
that's all. i didnt add anything is there a string value i have to add please be explicit (specific as much as you can) thank you!
First of all, your animation script won't work after the player respawns. Connect it to a CharacterAdded event to fix that.
Basically, Roblox's animate script can't be changed manually with scripts, or at least not easily. There is an easier alternative which is just to copy and paste the animate script into StarterCharacterScripts and modify the animations inside of it.