Advertisement
Guest User

Change default anims by RockyHD

a guest
Apr 3rd, 2020
463
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 3.04 KB | None | 0 0
  1. ---- script is working if something goes wrong its probably the game because I only tested on fencing.
  2. ---- Replace the animation asset codes with what u want to replace them with different anims
  3.  
  4. game.Players.LocalPlayer.Character.Animate.climb.ClimbAnim:Destroy()
  5.  
  6. game.Players.LocalPlayer.Character.Animate.walk.WalkAnim:Destroy()
  7.  
  8. game.Players.LocalPlayer.Character.Animate.jump.JumpAnim:Destroy()
  9.  
  10. game.Players.LocalPlayer.Character.Animate.idle.Animation1:Destroy()
  11.  
  12. game.Players.LocalPlayer.Character.Animate.idle.Animation2:Destroy()
  13.  
  14. game.Players.LocalPlayer.Character.Animate.sit.SitAnim:Destroy()
  15.  
  16. game.Players.LocalPlayer.Character.Animate.fall.FallAnim:Destroy()
  17.  
  18. game.Players.LocalPlayer.Character.Animate.toolnone.ToolNoneAnim:Destroy()
  19.  
  20.  
  21. ---Now you just replace them all with newly made from scratch animations lol
  22.  
  23.  
  24. newanim = Instance.new("Animation")
  25.  
  26. newanim.Parent = game.Players.LocalPlayer.Character.Animate.idle
  27.  
  28. newanim.Archivable = true
  29.  
  30. newanim.AnimationId = "rbxassetid://57720291"
  31.  
  32. newanim.Name = "Animation1"
  33.  
  34. newanim:IsA("Animation")
  35.  
  36. newanim.Archivable = true
  37.  
  38.  
  39. newanim1 = Instance.new("Animation")
  40.  
  41. newanim1.Parent = game.Players.LocalPlayer.Character.Animate.idle
  42.  
  43. newanim1.Archivable = true
  44.  
  45. newanim1.AnimationId = "rbxassetid://150301782"
  46.  
  47. newanim1.Name = "Animation2"
  48.  
  49. newanim1:IsA("Animation")
  50.  
  51. newanim1.Archivable = true
  52.  
  53.  
  54.  
  55. newanim2 = Instance.new("Animation")
  56.  
  57. newanim2.Parent = game.Players.LocalPlayer.Character.Animate.climb
  58.  
  59. newanim2.Archivable = true
  60.  
  61. newanim2.AnimationId = "rbxassetid://28440069"
  62.  
  63. newanim2.Name = "Animation1"
  64.  
  65. newanim2:IsA("Animation")
  66.  
  67. newanim2.Archivable = true
  68.  
  69.  
  70. newanim3 = Instance.new("Animation")
  71.  
  72. newanim3.Parent = game.Players.LocalPlayer.Character.Animate.walk
  73.  
  74. newanim3.Archivable = true
  75.  
  76. newanim3.AnimationId = "rbxassetid://376754935"
  77.  
  78. newanim3.Name = "Animation1"
  79.  
  80. newanim3:IsA("Animation")
  81.  
  82. newanim3.Archivable = true
  83.  
  84.  
  85. newanim4 = Instance.new("Animation")
  86.  
  87. newanim4.Parent = game.Players.LocalPlayer.Character.Animate.jump
  88.  
  89. newanim4.Archivable = true
  90.  
  91. newanim4.AnimationId = "rbxassetid://429681631"
  92.  
  93. newanim4.Name = "Animation1"
  94.  
  95. newanim4:IsA("Animation")
  96.  
  97. newanim4.Archivable = true
  98.  
  99.  
  100.  
  101. newanim5 = Instance.new("Animation")
  102.  
  103. newanim5.Parent = game.Players.LocalPlayer.Character.Animate.sit
  104.  
  105. newanim5.Archivable = true
  106.  
  107. newanim5.AnimationId = "rbxassetid://182724289"
  108.  
  109. newanim5.Name = "Animation1"
  110.  
  111. newanim5:IsA("Animation")
  112.  
  113. newanim5.Archivable = true
  114.  
  115.  
  116.  
  117. newanim6 = Instance.new("Animation")
  118.  
  119. newanim6.Parent = game.Players.LocalPlayer.Character.Animate.toolnone
  120.  
  121. newanim6.Archivable = true
  122.  
  123. newanim6.AnimationId = "rbxassetid://71379944"
  124.  
  125. newanim6.Name = "Animation1"
  126.  
  127. newanim6:IsA("Animation")
  128.  
  129. newanim6.Archivable = true
  130.  
  131.  
  132.  
  133. newanim6 = Instance.new("Animation")
  134.  
  135. newanim6.Parent = game.Players.LocalPlayer.Character.Animate.fall
  136.  
  137. newanim6.Archivable = true
  138.  
  139. newanim6.AnimationId = "rbxassetid://248336459"
  140.  
  141. newanim6.Name = "Animation1"
  142.  
  143. newanim6:IsA("Animation")
  144.  
  145. newanim6.Archivable = true
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement