Dark_Agent

FE R15 to R6 animations script

Jun 25th, 2026 (edited)
69
0
Never
2
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 3.61 KB | Gaming | 0 0
  1. local clonefunction = clonefunction or clonefunction(clonefunction) or function(...) return ... end
  2. local genv = clonefunction(getgenv)() or _G or shared
  3. local cloneref = cloneref or getgenv().cloneref or clonefunction(cloneref) or function(...) return ... end
  4.  
  5. getgenv().customanims = {
  6.     ["idle1"] = 86481260083940,
  7.     ["idle2"] = 130346692690001,
  8.     ["walk"] = 140233961550679,
  9.     ["run"] = 140233961550679,
  10.     ["jump"] = 106675315699522,
  11.     ["climb"] = 107153131584150,
  12.     ["fall"] = 93491041666792,
  13.     --["death"] = ,
  14.     ["swim"] = 140233961550679,
  15.     ["swimidle"] = 88624296373157,
  16.     ["laugh"] = 113442867466734,
  17. --  ["sit"] = 116354007367823,
  18.     ["wave"] = 123289543081081,
  19.     ["dance"] = 89676212115777,
  20.     ["dance2"] = 89676212115777,
  21.     ["dance3"] = 119093668447341
  22. }
  23.  
  24. local Players = cloneref(game:GetService("Players"))
  25. local plr = Players.LocalPlayer
  26. local chr = plr.Character or plr.CharacterAdded:Wait()
  27. local Animate = plr.Character:FindFirstChild("Animate")
  28. local hum = plr.Character:FindFirstChildOfClass("Humanoid")
  29.  
  30. local function StopAnim()
  31.     Animate.Disabled = false
  32.     local animtrack = hum:GetPlayingAnimationTracks()
  33.     for i, track in pairs(animtrack) do
  34.         track:Stop()
  35.     end
  36. end
  37.  
  38. Animate.Disabled = true
  39. StopAnim()
  40.  
  41. Animate.idle.Animation1.AnimationId = "http://www.roblox.com/asset/?id=" .. getgenv().customanims["idle1"]
  42. Animate.idle.Animation2.AnimationId = "http://www.roblox.com/asset/?id=" .. getgenv().customanims["idle2"]
  43. Animate.walk.WalkAnim.AnimationId = "http://www.roblox.com/asset/?id=" .. getgenv().customanims["walk"]
  44. Animate.run.RunAnim.AnimationId = "http://www.roblox.com/asset/?id=" .. getgenv().customanims["run"]
  45. Animate.jump.JumpAnim.AnimationId = "http://www.roblox.com/asset/?id=" .. getgenv().customanims["jump"]
  46. Animate.climb.ClimbAnim.AnimationId = "http://www.roblox.com/asset/?id=" .. getgenv().customanims["climb"]
  47. Animate.fall.FallAnim.AnimationId = "http://www.roblox.com/asset/?id=" .. getgenv().customanims["fall"]
  48. Animate.swim.Swim.AnimationId = "http://www.roblox.com/asset/?id=" .. getgenv().customanims["swim"]
  49. Animate.swimidle.SwimIdle.AnimationId = "http://www.roblox.com/asset/?id=" .. getgenv().customanims["swimidle"]
  50.  
  51. --extra
  52. --Animate.sit.SitAnim.AnimationId = "http://www.roblox.com/asset/?id=" .. getgenv().customanims["sit"]
  53. Animate.laugh.LaughAnim.AnimationId = "http://www.roblox.com/asset/?id=" .. getgenv().customanims["laugh"]
  54. Animate.wave.WaveAnim.AnimationId = "http://www.roblox.com/asset/?id=" .. getgenv().customanims["wave"]
  55. --Animate.death.DeathAnim.AnimationId = "http://www.roblox.com/asset/?id=" .. getgenv().customanims["death"] --???
  56.  
  57. Animate.dance.Animation1.AnimationId = "http://www.roblox.com/asset/?id=" .. getgenv().customanims["dance"]
  58. Animate.dance.Animation2.AnimationId = "http://www.roblox.com/asset/?id=" .. getgenv().customanims["dance"]
  59. Animate.dance.Animation3.AnimationId = "http://www.roblox.com/asset/?id=" .. getgenv().customanims["dance"]
  60.  
  61. Animate.dance2.Animation1.AnimationId = "http://www.roblox.com/asset/?id=" .. getgenv().customanims["dance2"]
  62. Animate.dance2.Animation2.AnimationId = "http://www.roblox.com/asset/?id=" .. getgenv().customanims["dance2"]
  63. Animate.dance2.Animation3.AnimationId = "http://www.roblox.com/asset/?id=" .. getgenv().customanims["dance2"]
  64.  
  65. Animate.dance3.Animation1.AnimationId = "http://www.roblox.com/asset/?id=" .. getgenv().customanims["dance3"]
  66. Animate.dance3.Animation2.AnimationId = "http://www.roblox.com/asset/?id=" .. getgenv().customanims["dance3"]
  67. Animate.dance3.Animation3.AnimationId = "http://www.roblox.com/asset/?id=" .. getgenv().customanims["dance3"]
  68.  
  69. hum:ChangeState(3)
  70. Animate.Disabled = false
  71.  
Advertisement
Comments
  • User was banned
  • User was banned
Add Comment
Please, Sign In to add comment