FE Animations GUI - Pastebin.com (2024)

  1. local Energize = Instance.new("ScreenGui")

  2. local SideFrame = Instance.new("Frame")

  3. local OpenGUI = Instance.new("TextButton")

  4. local SideFrameTitle = Instance.new("TextLabel")

  5. local MainFrame = Instance.new("Frame")

  6. local GuiBottomFrame = Instance.new("Frame")

  7. local Credits = Instance.new("TextLabel")

  8. local ScrollingFrame = Instance.new("ScrollingFrame")

  9. local CheckR = Instance.new("TextLabel")

  10. local ScrollingFrameR15 = Instance.new("ScrollingFrame")

  11. local CrazySlash = Instance.new("TextButton")--COMPLETE

  12. local Open = Instance.new("TextButton")--COMPLETE

  13. local R15Spinner = Instance.new("TextButton")--COMPLETE

  14. local ArmsOut = Instance.new("TextButton")--COMPLETE

  15. local FloatSlash = Instance.new("TextButton")--COMPLETE

  16. local WeirdZombie = Instance.new("TextButton")--COMPLETE

  17. local DownSlash = Instance.new("TextButton")--COMPLETE

  18. local Pull = Instance.new("TextButton")--COMPLETE

  19. local CircleArm = Instance.new("TextButton")--COMPLETE

  20. local Bend = Instance.new("TextButton")--COMPLETE

  21. local RotateSlash = Instance.new("TextButton")--COMPLETE

  22. local FlingArms = Instance.new("TextButton")--COMPLETE

  23. local FullSwing = Instance.new("TextButton")--COMPLETE

  24. local GlitchLevitate = Instance.new("TextButton")--COMPLETE

  25. local MoonDance = Instance.new("TextButton")--COMPLETE

  26. local FullPunch = Instance.new("TextButton")--COMPLETE

  27. local Crouch = Instance.new("TextButton")--COMPLETE

  28. local SpinDance = Instance.new("TextButton")--COMPLETE

  29. local FloorFaint = Instance.new("TextButton")--COMPLETE

  30. local JumpingJacks = Instance.new("TextButton")--COMPLETE

  31. local Spinner = Instance.new("TextButton")--COMPLETE

  32. local MegaInsane = Instance.new("TextButton")--COMPLETE

  33. local ArmDetach = Instance.new("TextButton")--COMPLETE

  34. local WeirdMove = Instance.new("TextButton")--COMPLETE

  35. local Faint = Instance.new("TextButton")--COMPLETE

  36. local CloneIllusion = Instance.new("TextButton")--COMPLETE

  37. local Levitate = Instance.new("TextButton")--COMPLETE

  38. local DinoWalk = Instance.new("TextButton")--COMPLETE

  39. local FloorCrawl = Instance.new("TextButton")--COMPLETE

  40. local SwordSlam = Instance.new("TextButton")--COMPLETE

  41. local LoopHead = Instance.new("TextButton")--COMPLETE

  42. local HeroJump = Instance.new("TextButton")--COMPLETE

  43. local Insane = Instance.new("TextButton")--COMPLETE

  44. local FloatingHead = Instance.new("TextButton")--COMPLETE

  45. local HeadThrow = Instance.new("TextButton")--COMPLETE

  46. local MovingDance = Instance.new("TextButton")--COMPLETE

  47. local SuperPunch = Instance.new("TextButton")--COMPLETE

  48. local ArmTurbine = Instance.new("TextButton")--COMPLETE

  49. local Dab = Instance.new("TextButton")--COMPLETE

  50. local FloatSit = Instance.new("TextButton")--COMPLETE

  51. local SuperFaint = Instance.new("TextButton")--COMPLETE

  52. local BarrelRoll = Instance.new("TextButton")--COMPLETE

  53. local Scared = Instance.new("TextButton")--COMPLETE

  54. local InsaneArms = Instance.new("TextButton")--COMPLETE

  55. local SwordSlice = Instance.new("TextButton")--COMPLETE

  56. local SpinDance2 = Instance.new("TextButton")--COMPLETE

  57. local BowDown = Instance.new("TextButton")--COMPLETE

  58. local LoopSlam = Instance.new("TextButton")--COMPLETE

  59. local GuiTopFrame = Instance.new("Frame") -- Top of the main frame

  60. local CloseGUI = Instance.new("TextButton") -- To close the GUI

  61. local Title = Instance.new("TextLabel") -- Actual title of GUI, Energize

  62. -- Properties

  63. Energize.Name = "Energize"

  64. Energize.Parent = game.Players.LocalPlayer.PlayerGui

  65. SideFrame.Name = "SideFrame"

  66. SideFrame.Parent = Energize

  67. SideFrame.Active = true

  68. SideFrame.BackgroundColor3 = Color3.new(1, 0.329412, 0.329412)

  69. SideFrame.Draggable = true

  70. SideFrame.Position = UDim2.new(0, 376, 0, 125)

  71. SideFrame.Size = UDim2.new(0, 460, 0, 32)

  72. SideFrame.Visible = false

  73. OpenGUI.Name = "OpenGUI"

  74. OpenGUI.Parent = SideFrame

  75. OpenGUI.BackgroundColor3 = Color3.new(1, 1, 1)

  76. OpenGUI.BackgroundTransparency = 1

  77. OpenGUI.Position = UDim2.new(0, 426, 0, 0)

  78. OpenGUI.Size = UDim2.new(0, 34, 0, 32)

  79. OpenGUI.Font = Enum.Font.SourceSans

  80. OpenGUI.FontSize = Enum.FontSize.Size48

  81. OpenGUI.Text = "X"

  82. OpenGUI.TextColor3 = Color3.new(0.333333, 0, 0)

  83. OpenGUI.TextSize = 40

  84. OpenGUI.TextWrapped = true

  85. SideFrameTitle.Name = "SideFrameTitle"

  86. SideFrameTitle.Parent = SideFrame

  87. SideFrameTitle.BackgroundColor3 = Color3.new(1, 1, 1)

  88. SideFrameTitle.BackgroundTransparency = 1

  89. SideFrameTitle.Position = UDim2.new(0, 170, 0, 0)

  90. SideFrameTitle.Size = UDim2.new(0, 119, 0, 31)

  91. SideFrameTitle.Font = Enum.Font.Arial

  92. SideFrameTitle.FontSize = Enum.FontSize.Size24

  93. SideFrameTitle.Text = "¦Energize¦"

  94. SideFrameTitle.TextSize = 21

  95. SideFrameTitle.TextStrokeColor3 = Color3.new(0.27451, 0.92549, 0.905882)

  96. SideFrameTitle.TextStrokeTransparency = 0.69999998807907

  97. MainFrame.Name = "MainFrame"

  98. MainFrame.Parent = Energize

  99. MainFrame.Active = true

  100. MainFrame.BackgroundColor3 = Color3.new(1, 1, 1)

  101. MainFrame.BackgroundTransparency = 1

  102. MainFrame.Draggable = true

  103. MainFrame.Position = UDim2.new(0, 376, 0, 125)

  104. MainFrame.Size = UDim2.new(0, 444, 0, 280)

  105. GuiBottomFrame.Name = "Gui BottomFrame"

  106. GuiBottomFrame.Parent = MainFrame

  107. GuiBottomFrame.BackgroundColor3 = Color3.new(1, 0.329412, 0.329412)

  108. GuiBottomFrame.BorderColor3 = Color3.new(0.243137, 0.243137, 0.243137)

  109. GuiBottomFrame.Position = UDim2.new(0, 0, 0, 247)

  110. GuiBottomFrame.Size = UDim2.new(0, 460, 0, 32)

  111. Credits.Name = "Credits"

  112. Credits.Parent = GuiBottomFrame

  113. Credits.BackgroundColor3 = Color3.new(1, 1, 1)

  114. Credits.BackgroundTransparency = 1

  115. Credits.Size = UDim2.new(0, 460, 0, 32)

  116. Credits.FontSize = Enum.FontSize.Size14

  117. Credits.Text = "By illremember ¦FE Animations Gui"

  118. Credits.TextColor3 = Color3.new(0.219608, 0.219608, 0.219608)

  119. Credits.TextSize = 14

  120. Credits.TextStrokeColor3 = Color3.new(0.141176, 0.870588, 0.713726)

  121. Credits.TextStrokeTransparency = 0.69999998807907

  122. Credits.TextWrapped = true

  123. ScrollingFrame.Parent = MainFrame

  124. ScrollingFrame.BackgroundColor3 = Color3.new(1, 0.564706, 0.564706)

  125. ScrollingFrame.Position = UDim2.new(0, 0, 0, 32)

  126. ScrollingFrame.Size = UDim2.new(0, 460, 0, 215)

  127. ScrollingFrame.ScrollBarThickness = 13

  128. FullSwing.Name = "FullSwing"

  129. FullSwing.Parent = ScrollingFrame

  130. FullSwing.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627)

  131. FullSwing.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)

  132. FullSwing.Position = UDim2.new(0, 17, 0, 322)

  133. FullSwing.Size = UDim2.new(0, 119, 0, 34)

  134. FullSwing.Font = Enum.Font.Highway

  135. FullSwing.FontSize = Enum.FontSize.Size24

  136. FullSwing.Text = "Full Swing"

  137. FullSwing.TextSize = 20

  138. FullSwing.TextWrapped = true

  139. GlitchLevitate.Name = "GlitchLevitate"

  140. GlitchLevitate.Parent = ScrollingFrame

  141. GlitchLevitate.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627)

  142. GlitchLevitate.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)

  143. GlitchLevitate.Position = UDim2.new(0, 319, 0, 322)

  144. GlitchLevitate.Size = UDim2.new(0, 119, 0, 34)

  145. GlitchLevitate.Font = Enum.Font.Highway

  146. GlitchLevitate.FontSize = Enum.FontSize.Size24

  147. GlitchLevitate.Text = "Glitch Levitate"

  148. GlitchLevitate.TextSize = 20

  149. GlitchLevitate.TextWrapped = true

  150. MoonDance.Name = "MoonDance"

  151. MoonDance.Parent = ScrollingFrame

  152. MoonDance.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627)

  153. MoonDance.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)

  154. MoonDance.Position = UDim2.new(0, 319, 0, 280)

  155. MoonDance.Size = UDim2.new(0, 119, 0, 34)

  156. MoonDance.Font = Enum.Font.Highway

  157. MoonDance.FontSize = Enum.FontSize.Size24

  158. MoonDance.Text = "Moon Dance"

  159. MoonDance.TextSize = 20

  160. MoonDance.TextWrapped = true

  161. FullPunch.Name = "FullPunch"

  162. FullPunch.Parent = ScrollingFrame

  163. FullPunch.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627)

  164. FullPunch.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)

  165. FullPunch.Position = UDim2.new(0, 17, 0, 280)

  166. FullPunch.Size = UDim2.new(0, 119, 0, 34)

  167. FullPunch.Font = Enum.Font.Highway

  168. FullPunch.FontSize = Enum.FontSize.Size24

  169. FullPunch.Text = "Full Punch"

  170. FullPunch.TextSize = 20

  171. FullPunch.TextWrapped = true

  172. Crouch.Name = "Crouch"

  173. Crouch.Parent = ScrollingFrame

  174. Crouch.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627)

  175. Crouch.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)

  176. Crouch.Position = UDim2.new(0, 168, 0, 280)

  177. Crouch.Size = UDim2.new(0, 119, 0, 34)

  178. Crouch.Font = Enum.Font.Highway

  179. Crouch.FontSize = Enum.FontSize.Size24

  180. Crouch.Text = "Crouch"

  181. Crouch.TextSize = 20

  182. Crouch.TextWrapped = true

  183. SpinDance.Name = "SpinDance"

  184. SpinDance.Parent = ScrollingFrame

  185. SpinDance.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627)

  186. SpinDance.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)

  187. SpinDance.Position = UDim2.new(0, 168, 0, 236)

  188. SpinDance.Size = UDim2.new(0, 119, 0, 34)

  189. SpinDance.Font = Enum.Font.Highway

  190. SpinDance.FontSize = Enum.FontSize.Size24

  191. SpinDance.Text = "Spin Dance"

  192. SpinDance.TextSize = 20

  193. SpinDance.TextWrapped = true

  194. FloorFaint.Name = "FloorFaint"

  195. FloorFaint.Parent = ScrollingFrame

  196. FloorFaint.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627)

  197. FloorFaint.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)

  198. FloorFaint.Position = UDim2.new(0, 17, 0, 236)

  199. FloorFaint.Size = UDim2.new(0, 119, 0, 34)

  200. FloorFaint.Font = Enum.Font.Highway

  201. FloorFaint.FontSize = Enum.FontSize.Size24

  202. FloorFaint.Text = "Floor Faint"

  203. FloorFaint.TextSize = 20

  204. FloorFaint.TextWrapped = true

  205. JumpingJacks.Name = "JumpingJacks"

  206. JumpingJacks.Parent = ScrollingFrame

  207. JumpingJacks.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627)

  208. JumpingJacks.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)

  209. JumpingJacks.Position = UDim2.new(0, 319, 0, 236)

  210. JumpingJacks.Size = UDim2.new(0, 119, 0, 34)

  211. JumpingJacks.Font = Enum.Font.Highway

  212. JumpingJacks.FontSize = Enum.FontSize.Size24

  213. JumpingJacks.Text = "Jumping Jacks"

  214. JumpingJacks.TextSize = 20

  215. JumpingJacks.TextWrapped = true

  216. Spinner.Name = "Spinner"

  217. Spinner.Parent = ScrollingFrame

  218. Spinner.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627)

  219. Spinner.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)

  220. Spinner.Position = UDim2.new(0, 17, 0, 192)

  221. Spinner.Size = UDim2.new(0, 119, 0, 34)

  222. Spinner.Font = Enum.Font.Highway

  223. Spinner.FontSize = Enum.FontSize.Size24

  224. Spinner.Text = "Spinner"

  225. Spinner.TextSize = 20

  226. Spinner.TextWrapped = true

  227. MegaInsane.Name = "MegaInsane"

  228. MegaInsane.Parent = ScrollingFrame

  229. MegaInsane.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627)

  230. MegaInsane.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)

  231. MegaInsane.Position = UDim2.new(0, 168, 0, 192)

  232. MegaInsane.Size = UDim2.new(0, 119, 0, 34)

  233. MegaInsane.Font = Enum.Font.Highway

  234. MegaInsane.FontSize = Enum.FontSize.Size24

  235. MegaInsane.Text = "Mega Insane"

  236. MegaInsane.TextSize = 20

  237. MegaInsane.TextWrapped = true

  238. ArmDetach.Name = "ArmDetach"

  239. ArmDetach.Parent = ScrollingFrame

  240. ArmDetach.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627)

  241. ArmDetach.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)

  242. ArmDetach.Position = UDim2.new(0, 319, 0, 192)

  243. ArmDetach.Size = UDim2.new(0, 119, 0, 34)

  244. ArmDetach.Font = Enum.Font.Highway

  245. ArmDetach.FontSize = Enum.FontSize.Size24

  246. ArmDetach.Text = "Arm Detach"

  247. ArmDetach.TextSize = 20

  248. ArmDetach.TextWrapped = true

  249. WeirdMove.Name = "WeirdMove"

  250. WeirdMove.Parent = ScrollingFrame

  251. WeirdMove.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627)

  252. WeirdMove.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)

  253. WeirdMove.Position = UDim2.new(0, 168, 0, 148)

  254. WeirdMove.Size = UDim2.new(0, 119, 0, 34)

  255. WeirdMove.Font = Enum.Font.Highway

  256. WeirdMove.FontSize = Enum.FontSize.Size24

  257. WeirdMove.Text = "Weird Move"

  258. WeirdMove.TextSize = 20

  259. WeirdMove.TextWrapped = true

  260. Faint.Name = "Faint"

  261. Faint.Parent = ScrollingFrame

  262. Faint.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627)

  263. Faint.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)

  264. Faint.Position = UDim2.new(0, 17, 0, 148)

  265. Faint.Size = UDim2.new(0, 119, 0, 34)

  266. Faint.Font = Enum.Font.Highway

  267. Faint.FontSize = Enum.FontSize.Size24

  268. Faint.Text = "Faint"

  269. Faint.TextSize = 20

  270. Faint.TextWrapped = true

  271. CloneIllusion.Name = "CloneIllusion"

  272. CloneIllusion.Parent = ScrollingFrame

  273. CloneIllusion.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627)

  274. CloneIllusion.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)

  275. CloneIllusion.Position = UDim2.new(0, 319, 0, 148)

  276. CloneIllusion.Size = UDim2.new(0, 119, 0, 34)

  277. CloneIllusion.Font = Enum.Font.Highway

  278. CloneIllusion.FontSize = Enum.FontSize.Size24

  279. CloneIllusion.Text = "Clone Illusion"

  280. CloneIllusion.TextSize = 20

  281. CloneIllusion.TextWrapped = true

  282. Levitate.Name = "Levitate"

  283. Levitate.Parent = ScrollingFrame

  284. Levitate.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627)

  285. Levitate.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)

  286. Levitate.Position = UDim2.new(0, 17, 0, 104)

  287. Levitate.Size = UDim2.new(0, 119, 0, 34)

  288. Levitate.Font = Enum.Font.Highway

  289. Levitate.FontSize = Enum.FontSize.Size24

  290. Levitate.Text = "Levitate"

  291. Levitate.TextSize = 20

  292. Levitate.TextWrapped = true

  293. DinoWalk.Name = "DinoWalk"

  294. DinoWalk.Parent = ScrollingFrame

  295. DinoWalk.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627)

  296. DinoWalk.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)

  297. DinoWalk.Position = UDim2.new(0, 168, 0, 104)

  298. DinoWalk.Size = UDim2.new(0, 119, 0, 34)

  299. DinoWalk.Font = Enum.Font.Highway

  300. DinoWalk.FontSize = Enum.FontSize.Size24

  301. DinoWalk.Text = "Dino Walk"

  302. DinoWalk.TextSize = 20

  303. DinoWalk.TextWrapped = true

  304. FloorCrawl.Name = "FloorCrawl"

  305. FloorCrawl.Parent = ScrollingFrame

  306. FloorCrawl.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627)

  307. FloorCrawl.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)

  308. FloorCrawl.Position = UDim2.new(0, 319, 0, 104)

  309. FloorCrawl.Size = UDim2.new(0, 119, 0, 34)

  310. FloorCrawl.Font = Enum.Font.Highway

  311. FloorCrawl.FontSize = Enum.FontSize.Size24

  312. FloorCrawl.Text = "Floor Crawl"

  313. FloorCrawl.TextSize = 20

  314. FloorCrawl.TextWrapped = true

  315. SwordSlam.Name = "SwordSlam"

  316. SwordSlam.Parent = ScrollingFrame

  317. SwordSlam.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627)

  318. SwordSlam.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)

  319. SwordSlam.Position = UDim2.new(0, 319, 0, 60)

  320. SwordSlam.Size = UDim2.new(0, 119, 0, 34)

  321. SwordSlam.Font = Enum.Font.Highway

  322. SwordSlam.FontSize = Enum.FontSize.Size24

  323. SwordSlam.Text = "Sword Slam"

  324. SwordSlam.TextSize = 20

  325. SwordSlam.TextWrapped = true

  326. LoopHead.Name = "LoopHead"

  327. LoopHead.Parent = ScrollingFrame

  328. LoopHead.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627)

  329. LoopHead.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)

  330. LoopHead.Position = UDim2.new(0, 168, 0, 60)

  331. LoopHead.Size = UDim2.new(0, 119, 0, 34)

  332. LoopHead.Font = Enum.Font.Highway

  333. LoopHead.FontSize = Enum.FontSize.Size24

  334. LoopHead.Text = "Loop Head"

  335. LoopHead.TextSize = 20

  336. LoopHead.TextWrapped = true

  337. HeroJump.Name = "HeroJump"

  338. HeroJump.Parent = ScrollingFrame

  339. HeroJump.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627)

  340. HeroJump.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)

  341. HeroJump.Position = UDim2.new(0, 17, 0, 60)

  342. HeroJump.Size = UDim2.new(0, 119, 0, 34)

  343. HeroJump.Font = Enum.Font.Highway

  344. HeroJump.FontSize = Enum.FontSize.Size24

  345. HeroJump.Text = "Hero Jump"

  346. HeroJump.TextSize = 20

  347. HeroJump.TextWrapped = true

  348. Insane.Name = "Insane"

  349. Insane.Parent = ScrollingFrame

  350. Insane.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627)

  351. Insane.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)

  352. Insane.Position = UDim2.new(0, 319, 0, 16)

  353. Insane.Size = UDim2.new(0, 119, 0, 34)

  354. Insane.Font = Enum.Font.Highway

  355. Insane.FontSize = Enum.FontSize.Size24

  356. Insane.Text = "Insane"

  357. Insane.TextSize = 20

  358. Insane.TextWrapped = true

  359. FloatingHead.Name = "FloatingHead"

  360. FloatingHead.Parent = ScrollingFrame

  361. FloatingHead.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627)

  362. FloatingHead.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)

  363. FloatingHead.Position = UDim2.new(0, 168, 0, 16)

  364. FloatingHead.Size = UDim2.new(0, 119, 0, 34)

  365. FloatingHead.Font = Enum.Font.Highway

  366. FloatingHead.FontSize = Enum.FontSize.Size24

  367. FloatingHead.Text = "Floating Head"

  368. FloatingHead.TextSize = 20

  369. FloatingHead.TextWrapped = true

  370. HeadThrow.Name = "HeadThrow"

  371. HeadThrow.Parent = ScrollingFrame

  372. HeadThrow.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627)

  373. HeadThrow.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)

  374. HeadThrow.Position = UDim2.new(0, 17, 0, 16)

  375. HeadThrow.Size = UDim2.new(0, 119, 0, 34)

  376. HeadThrow.Font = Enum.Font.Highway

  377. HeadThrow.FontSize = Enum.FontSize.Size24

  378. HeadThrow.Text = "Head Throw"

  379. HeadThrow.TextSize = 20

  380. HeadThrow.TextWrapped = true

  381. MovingDance.Name = "MovingDance"

  382. MovingDance.Parent = ScrollingFrame

  383. MovingDance.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627)

  384. MovingDance.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)

  385. MovingDance.Position = UDim2.new(0, 168, 0, 324)

  386. MovingDance.Size = UDim2.new(0, 119, 0, 34)

  387. MovingDance.Font = Enum.Font.Highway

  388. MovingDance.FontSize = Enum.FontSize.Size24

  389. MovingDance.Text = "Moving Dance"

  390. MovingDance.TextSize = 20

  391. MovingDance.TextWrapped = true

  392. SuperPunch.Name = "SuperPunch"

  393. SuperPunch.Parent = ScrollingFrame

  394. SuperPunch.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627)

  395. SuperPunch.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)

  396. SuperPunch.Position = UDim2.new(0, 168, 0, 366)

  397. SuperPunch.Size = UDim2.new(0, 119, 0, 34)

  398. SuperPunch.Font = Enum.Font.Highway

  399. SuperPunch.FontSize = Enum.FontSize.Size24

  400. SuperPunch.Text = "Super Punch"

  401. SuperPunch.TextSize = 20

  402. SuperPunch.TextWrapped = true

  403. ArmTurbine.Name = "ArmTurbine"

  404. ArmTurbine.Parent = ScrollingFrame

  405. ArmTurbine.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627)

  406. ArmTurbine.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)

  407. ArmTurbine.Position = UDim2.new(0, 319, 0, 366)

  408. ArmTurbine.Size = UDim2.new(0, 119, 0, 34)

  409. ArmTurbine.Font = Enum.Font.Highway

  410. ArmTurbine.FontSize = Enum.FontSize.Size24

  411. ArmTurbine.Text = "Arm Turbine"

  412. ArmTurbine.TextSize = 20

  413. ArmTurbine.TextWrapped = true

  414. Dab.Name = "Dab"

  415. Dab.Parent = ScrollingFrame

  416. Dab.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627)

  417. Dab.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)

  418. Dab.Position = UDim2.new(0, 17, 0, 366)

  419. Dab.Size = UDim2.new(0, 119, 0, 34)

  420. Dab.Font = Enum.Font.Highway

  421. Dab.FontSize = Enum.FontSize.Size24

  422. Dab.Text = "Dab"

  423. Dab.TextSize = 20

  424. Dab.TextWrapped = true

  425. FloatSit.Name = "FloatSit"

  426. FloatSit.Parent = ScrollingFrame

  427. FloatSit.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627)

  428. FloatSit.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)

  429. FloatSit.Position = UDim2.new(0, 168, 0, 410)

  430. FloatSit.Size = UDim2.new(0, 119, 0, 34)

  431. FloatSit.Font = Enum.Font.Highway

  432. FloatSit.FontSize = Enum.FontSize.Size24

  433. FloatSit.Text = "Float Sit"

  434. FloatSit.TextSize = 20

  435. FloatSit.TextWrapped = true

  436. SuperFaint.Name = "SuperFaint"

  437. SuperFaint.Parent = ScrollingFrame

  438. SuperFaint.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627)

  439. SuperFaint.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)

  440. SuperFaint.Position = UDim2.new(0, 17, 0, 498)

  441. SuperFaint.Size = UDim2.new(0, 119, 0, 34)

  442. SuperFaint.Font = Enum.Font.Highway

  443. SuperFaint.FontSize = Enum.FontSize.Size24

  444. SuperFaint.Text = "Super Faint"

  445. SuperFaint.TextSize = 20

  446. SuperFaint.TextWrapped = true

  447. BarrelRoll.Name = "BarrelRoll"

  448. BarrelRoll.Parent = ScrollingFrame

  449. BarrelRoll.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627)

  450. BarrelRoll.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)

  451. BarrelRoll.Position = UDim2.new(0, 319, 0, 410)

  452. BarrelRoll.Size = UDim2.new(0, 119, 0, 34)

  453. BarrelRoll.Font = Enum.Font.Highway

  454. BarrelRoll.FontSize = Enum.FontSize.Size24

  455. BarrelRoll.Text = "Barrel Roll"

  456. BarrelRoll.TextSize = 20

  457. BarrelRoll.TextWrapped = true

  458. Scared.Name = "Scared"

  459. Scared.Parent = ScrollingFrame

  460. Scared.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627)

  461. Scared.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)

  462. Scared.Position = UDim2.new(0, 319, 0, 454)

  463. Scared.Size = UDim2.new(0, 119, 0, 34)

  464. Scared.Font = Enum.Font.Highway

  465. Scared.FontSize = Enum.FontSize.Size24

  466. Scared.Text = "Scared"

  467. Scared.TextSize = 20

  468. Scared.TextWrapped = true

  469. InsaneArms.Name = "InsaneArms"

  470. InsaneArms.Parent = ScrollingFrame

  471. InsaneArms.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627)

  472. InsaneArms.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)

  473. InsaneArms.Position = UDim2.new(0, 17, 0, 454)

  474. InsaneArms.Size = UDim2.new(0, 119, 0, 34)

  475. InsaneArms.Font = Enum.Font.Highway

  476. InsaneArms.FontSize = Enum.FontSize.Size24

  477. InsaneArms.Text = "Insane Arms"

  478. InsaneArms.TextSize = 20

  479. InsaneArms.TextWrapped = true

  480. SwordSlice.Name = "SwordSlice"

  481. SwordSlice.Parent = ScrollingFrame

  482. SwordSlice.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627)

  483. SwordSlice.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)

  484. SwordSlice.Position = UDim2.new(0, 168, 0, 454)

  485. SwordSlice.Size = UDim2.new(0, 119, 0, 34)

  486. SwordSlice.Font = Enum.Font.Highway

  487. SwordSlice.FontSize = Enum.FontSize.Size24

  488. SwordSlice.Text = "Sword Slice"

  489. SwordSlice.TextSize = 20

  490. SwordSlice.TextWrapped = true

  491. SpinDance2.Name = "SpinDance2"

  492. SpinDance2.Parent = ScrollingFrame

  493. SpinDance2.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627)

  494. SpinDance2.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)

  495. SpinDance2.Position = UDim2.new(0, 168, 0, 498)

  496. SpinDance2.Size = UDim2.new(0, 119, 0, 34)

  497. SpinDance2.Font = Enum.Font.Highway

  498. SpinDance2.FontSize = Enum.FontSize.Size24

  499. SpinDance2.Text = "Spin Dance 2"

  500. SpinDance2.TextSize = 20

  501. SpinDance2.TextWrapped = true

  502. BowDown.Name = "BowDown"

  503. BowDown.Parent = ScrollingFrame

  504. BowDown.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627)

  505. BowDown.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)

  506. BowDown.Position = UDim2.new(0, 319, 0, 498)

  507. BowDown.Size = UDim2.new(0, 119, 0, 34)

  508. BowDown.Font = Enum.Font.Highway

  509. BowDown.FontSize = Enum.FontSize.Size24

  510. BowDown.Text = "Bow Down"

  511. BowDown.TextSize = 20

  512. BowDown.TextWrapped = true

  513. LoopSlam.Name = "LoopSlam"

  514. LoopSlam.Parent = ScrollingFrame

  515. LoopSlam.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627)

  516. LoopSlam.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)

  517. LoopSlam.Position = UDim2.new(0, 17, 0, 410)

  518. LoopSlam.Size = UDim2.new(0, 119, 0, 34)

  519. LoopSlam.Font = Enum.Font.Highway

  520. LoopSlam.FontSize = Enum.FontSize.Size24

  521. LoopSlam.Text = "Loop Slam"

  522. LoopSlam.TextSize = 20

  523. LoopSlam.TextWrapped = true

  524. GuiTopFrame.Name = "Gui TopFrame"

  525. GuiTopFrame.Parent = MainFrame

  526. GuiTopFrame.BackgroundColor3 = Color3.new(1, 0.329412, 0.329412)

  527. GuiTopFrame.BorderColor3 = Color3.new(0.243137, 0.243137, 0.243137)

  528. GuiTopFrame.Size = UDim2.new(0, 460, 0, 32)

  529. CloseGUI.Name = "CloseGUI"

  530. CloseGUI.Parent = GuiTopFrame

  531. CloseGUI.BackgroundColor3 = Color3.new(1, 1, 1)

  532. CloseGUI.BackgroundTransparency = 1

  533. CloseGUI.Position = UDim2.new(0, 426, 0, 0)

  534. CloseGUI.Size = UDim2.new(0, 34, 0, 32)

  535. CloseGUI.Font = Enum.Font.SourceSans

  536. CloseGUI.FontSize = Enum.FontSize.Size48

  537. CloseGUI.Text = "X"

  538. CloseGUI.TextColor3 = Color3.new(0.333333, 0, 0)

  539. CloseGUI.TextSize = 40

  540. CloseGUI.TextWrapped = true

  541. Title.Name = "Title"

  542. Title.Parent = GuiTopFrame

  543. Title.BackgroundColor3 = Color3.new(1, 1, 1)

  544. Title.BackgroundTransparency = 1

  545. Title.Size = UDim2.new(0, 460, 0, 32)

  546. Title.FontSize = Enum.FontSize.Size14

  547. Title.Text = "¦Energize¦"

  548. Title.TextColor3 = Color3.new(0.164706, 0.164706, 0.164706)

  549. Title.TextSize = 14

  550. Title.TextStrokeColor3 = Color3.new(0.384314, 0.917647, 1)

  551. Title.TextStrokeTransparency = 0.69999998807907

  552. Title.TextWrapped = true

  553. CheckR.Name = "CheckR"

  554. CheckR.Parent = GuiTopFrame

  555. CheckR.BackgroundColor3 = Color3.new(1, 1, 1)

  556. CheckR.BackgroundTransparency = 1

  557. CheckR.Size = UDim2.new(0, 171, 0, 32)

  558. CheckR.Font = Enum.Font.SourceSansBold

  559. CheckR.FontSize = Enum.FontSize.Size14

  560. CheckR.Text = "Text"

  561. CheckR.TextScaled = true

  562. CheckR.TextSize = 14

  563. CheckR.TextWrapped = true

  564. ScrollingFrameR15.Name = "ScrollingFrameR15"

  565. ScrollingFrameR15.Parent = MainFrame

  566. ScrollingFrameR15.BackgroundColor3 = Color3.new(1, 0.564706, 0.564706)

  567. ScrollingFrameR15.Position = UDim2.new(0, 0, 0, 32)

  568. ScrollingFrameR15.Size = UDim2.new(0, 460, 0, 215)

  569. ScrollingFrameR15.Visible = false

  570. ScrollingFrameR15.ScrollBarThickness = 13

  571. CrazySlash.Name = "CrazySlash"

  572. CrazySlash.Parent = ScrollingFrameR15

  573. CrazySlash.BackgroundColor3 = Color3.new(0.682353, 0.701961, 0.792157)

  574. CrazySlash.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)

  575. CrazySlash.Position = UDim2.new(0, 17, 0, 16)

  576. CrazySlash.Size = UDim2.new(0, 119, 0, 34)

  577. CrazySlash.Font = Enum.Font.Highway

  578. CrazySlash.FontSize = Enum.FontSize.Size24

  579. CrazySlash.Text = "CrazySlash"

  580. CrazySlash.TextSize = 20

  581. CrazySlash.TextWrapped = true

  582. Open.Name = "Open"

  583. Open.Parent = ScrollingFrameR15

  584. Open.BackgroundColor3 = Color3.new(0.682353, 0.701961, 0.792157)

  585. Open.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)

  586. Open.Position = UDim2.new(0, 168, 0, 16)

  587. Open.Size = UDim2.new(0, 119, 0, 34)

  588. Open.Font = Enum.Font.Highway

  589. Open.FontSize = Enum.FontSize.Size24

  590. Open.Text = "Open"

  591. Open.TextSize = 20

  592. Open.TextWrapped = true

  593. R15Spinner.Name = "R15Spinner"

  594. R15Spinner.Parent = ScrollingFrameR15

  595. R15Spinner.BackgroundColor3 = Color3.new(0.682353, 0.701961, 0.792157)

  596. R15Spinner.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)

  597. R15Spinner.Position = UDim2.new(0, 17, 0, 60)

  598. R15Spinner.Size = UDim2.new(0, 119, 0, 34)

  599. R15Spinner.Font = Enum.Font.Highway

  600. R15Spinner.FontSize = Enum.FontSize.Size24

  601. R15Spinner.Text = "Spinner"

  602. R15Spinner.TextSize = 20

  603. R15Spinner.TextWrapped = true

  604. ArmsOut.Name = "ArmsOut"

  605. ArmsOut.Parent = ScrollingFrameR15

  606. ArmsOut.BackgroundColor3 = Color3.new(0.682353, 0.701961, 0.792157)

  607. ArmsOut.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)

  608. ArmsOut.Position = UDim2.new(0, 319, 0, 16)

  609. ArmsOut.Size = UDim2.new(0, 119, 0, 34)

  610. ArmsOut.Font = Enum.Font.Highway

  611. ArmsOut.FontSize = Enum.FontSize.Size24

  612. ArmsOut.Text = "ArmsOut"

  613. ArmsOut.TextSize = 20

  614. ArmsOut.TextWrapped = true

  615. FloatSlash.Name = "FloatSlash"

  616. FloatSlash.Parent = ScrollingFrameR15

  617. FloatSlash.BackgroundColor3 = Color3.new(0.682353, 0.701961, 0.792157)

  618. FloatSlash.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)

  619. FloatSlash.Position = UDim2.new(0, 168, 0, 148)

  620. FloatSlash.Size = UDim2.new(0, 119, 0, 34)

  621. FloatSlash.Font = Enum.Font.Highway

  622. FloatSlash.FontSize = Enum.FontSize.Size24

  623. FloatSlash.Text = "FloatSlash"

  624. FloatSlash.TextSize = 20

  625. FloatSlash.TextWrapped = true

  626. WeirdZombie.Name = "WeirdZombie"

  627. WeirdZombie.Parent = ScrollingFrameR15

  628. WeirdZombie.BackgroundColor3 = Color3.new(0.682353, 0.701961, 0.792157)

  629. WeirdZombie.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)

  630. WeirdZombie.Position = UDim2.new(0, 17, 0, 148)

  631. WeirdZombie.Size = UDim2.new(0, 119, 0, 34)

  632. WeirdZombie.Font = Enum.Font.Highway

  633. WeirdZombie.FontSize = Enum.FontSize.Size24

  634. WeirdZombie.Text = "WeirdZombie"

  635. WeirdZombie.TextSize = 20

  636. WeirdZombie.TextWrapped = true

  637. DownSlash.Name = "DownSlash"

  638. DownSlash.Parent = ScrollingFrameR15

  639. DownSlash.BackgroundColor3 = Color3.new(0.682353, 0.701961, 0.792157)

  640. DownSlash.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)

  641. DownSlash.Position = UDim2.new(0, 319, 0, 148)

  642. DownSlash.Size = UDim2.new(0, 119, 0, 34)

  643. DownSlash.Font = Enum.Font.Highway

  644. DownSlash.FontSize = Enum.FontSize.Size24

  645. DownSlash.Text = "DownSlash"

  646. DownSlash.TextSize = 20

  647. DownSlash.TextWrapped = true

  648. Pull.Name = "Pull"

  649. Pull.Parent = ScrollingFrameR15

  650. Pull.BackgroundColor3 = Color3.new(0.682353, 0.701961, 0.792157)

  651. Pull.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)

  652. Pull.Position = UDim2.new(0, 17, 0, 104)

  653. Pull.Size = UDim2.new(0, 119, 0, 34)

  654. Pull.Font = Enum.Font.Highway

  655. Pull.FontSize = Enum.FontSize.Size24

  656. Pull.Text = "Pull"

  657. Pull.TextSize = 20

  658. Pull.TextWrapped = true

  659. CircleArm.Name = "CircleArm"

  660. CircleArm.Parent = ScrollingFrameR15

  661. CircleArm.BackgroundColor3 = Color3.new(0.682353, 0.701961, 0.792157)

  662. CircleArm.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)

  663. CircleArm.Position = UDim2.new(0, 168, 0, 104)

  664. CircleArm.Size = UDim2.new(0, 119, 0, 34)

  665. CircleArm.Font = Enum.Font.Highway

  666. CircleArm.FontSize = Enum.FontSize.Size24

  667. CircleArm.Text = "CircleArm"

  668. CircleArm.TextSize = 20

  669. CircleArm.TextWrapped = true

  670. Bend.Name = "Bend"

  671. Bend.Parent = ScrollingFrameR15

  672. Bend.BackgroundColor3 = Color3.new(0.682353, 0.701961, 0.792157)

  673. Bend.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)

  674. Bend.Position = UDim2.new(0, 319, 0, 104)

  675. Bend.Size = UDim2.new(0, 119, 0, 34)

  676. Bend.Font = Enum.Font.Highway

  677. Bend.FontSize = Enum.FontSize.Size24

  678. Bend.Text = "Bend"

  679. Bend.TextSize = 20

  680. Bend.TextWrapped = true

  681. RotateSlash.Name = "RotateSlash"

  682. RotateSlash.Parent = ScrollingFrameR15

  683. RotateSlash.BackgroundColor3 = Color3.new(0.682353, 0.701961, 0.792157)

  684. RotateSlash.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)

  685. RotateSlash.Position = UDim2.new(0, 319, 0, 60)

  686. RotateSlash.Size = UDim2.new(0, 119, 0, 34)

  687. RotateSlash.Font = Enum.Font.Highway

  688. RotateSlash.FontSize = Enum.FontSize.Size24

  689. RotateSlash.Text = "RotateSlash"

  690. RotateSlash.TextSize = 20

  691. RotateSlash.TextWrapped = true

  692. FlingArms.Name = "FlingArms"

  693. FlingArms.Parent = ScrollingFrameR15

  694. FlingArms.BackgroundColor3 = Color3.new(0.682353, 0.701961, 0.792157)

  695. FlingArms.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)

  696. FlingArms.Position = UDim2.new(0, 168, 0, 60)

  697. FlingArms.Size = UDim2.new(0, 119, 0, 34)

  698. FlingArms.Font = Enum.Font.Highway

  699. FlingArms.FontSize = Enum.FontSize.Size24

  700. FlingArms.Text = "FlingArms"

  701. FlingArms.TextSize = 20

  702. FlingArms.TextWrapped = true

  703. -- Buttons

  704. col = Color3.new(0.886275, 0.776471, 0.368627)

  705. loc = Color3.new(1, 0.906471, 0.568627)

  706. rcol = Color3.new(0.682353, 0.701961, 0.792157)

  707. rloc = Color3.new(0.882353, 0.901961, 0.992157)

  708. CloseGUI.MouseButton1Click:connect(function()

  709. MainFrame.Visible = false

  710. SideFrame.Visible = true

  711. SideFrame.Position = MainFrame.Position

  712. end)

  713. OpenGUI.MouseButton1Click:connect(function()

  714. MainFrame.Visible = true

  715. SideFrame.Visible = false

  716. MainFrame.Position = SideFrame.Position

  717. end)

  718. if (game:GetService"Players".LocalPlayer.Character:WaitForChild("Humanoid").RigType == Enum.HumanoidRigType.R15) then

  719. ScrollingFrame.Visible = false

  720. ScrollingFrameR15.Visible = true

  721. CheckR.Text = "Showing R15 Animations"

  722. else

  723. ScrollingFrame.Visible = true

  724. ScrollingFrameR15.Visible = false

  725. CheckR.Text = "Showing R6 Animations"

  726. end

  727. local Anim = Instance.new("Animation")

  728. Anim.AnimationId = "rbxassetid://35154961"

  729. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)

  730. local HeadThrowACTIVE = false

  731. HeadThrow.MouseButton1Click:connect(function()

  732. HeadThrowACTIVE = not HeadThrowACTIVE

  733. if HeadThrowACTIVE then

  734. HeadThrow.BackgroundColor3 = loc

  735. while wait() do

  736. if track.IsPlaying == false then

  737. if HeadThrowACTIVE then

  738. track:Play(.1, 1, 1)

  739. end

  740. end

  741. end

  742. else

  743. track:Stop()

  744. HeadThrow.BackgroundColor3 = col

  745. end

  746. end)

  747. local Anim = Instance.new("Animation")

  748. Anim.AnimationId = "rbxassetid://121572214"

  749. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)

  750. local FloatingHeadACTIVE = false

  751. FloatingHead.MouseButton1Click:connect(function()

  752. FloatingHeadACTIVE = not FloatingHeadACTIVE

  753. if FloatingHeadACTIVE then

  754. track:Play(.1, 1, 1)

  755. FloatingHead.BackgroundColor3 = loc

  756. else

  757. track:Stop()

  758. FloatingHead.BackgroundColor3 = col

  759. end

  760. end)

  761. local Anim = Instance.new("Animation")

  762. Anim.AnimationId = "rbxassetid://182724289"

  763. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)

  764. local CrouchACTIVE = false

  765. Crouch.MouseButton1Click:connect(function()

  766. CrouchACTIVE = not CrouchACTIVE

  767. if CrouchACTIVE then

  768. track:Play(.1, 1, 1)

  769. Crouch.BackgroundColor3 = loc

  770. else

  771. track:Stop()

  772. Crouch.BackgroundColor3 = col

  773. end

  774. end)

  775. local Anim = Instance.new("Animation")

  776. Anim.AnimationId = "rbxassetid://282574440"

  777. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)

  778. local FloorCrawlACTIVE = false

  779. FloorCrawl.MouseButton1Click:connect(function()

  780. FloorCrawlACTIVE = not FloorCrawlACTIVE

  781. if FloorCrawlACTIVE then

  782. track:Play(.1, 1, 1)

  783. FloorCrawl.BackgroundColor3 = loc

  784. else

  785. track:Stop()

  786. FloorCrawl.BackgroundColor3 = col

  787. end

  788. end)

  789. local Anim = Instance.new("Animation")

  790. Anim.AnimationId = "rbxassetid://204328711"

  791. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)

  792. local DinoWalkACTIVE = false

  793. DinoWalk.MouseButton1Click:connect(function()

  794. DinoWalkACTIVE = not DinoWalkACTIVE

  795. if DinoWalkACTIVE then

  796. track:Play(.1, 1, 1)

  797. DinoWalk.BackgroundColor3 = loc

  798. else

  799. track:Stop()

  800. DinoWalk.BackgroundColor3 = col

  801. end

  802. end)

  803. local Anim = Instance.new("Animation")

  804. Anim.AnimationId = "rbxassetid://429681631"

  805. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)

  806. local JumpingJacksACTIVE = false

  807. JumpingJacks.MouseButton1Click:connect(function()

  808. JumpingJacksACTIVE = not JumpingJacksACTIVE

  809. if JumpingJacksACTIVE then

  810. track:Play(.1, 1, 1)

  811. JumpingJacks.BackgroundColor3 = loc

  812. else

  813. track:Stop()

  814. JumpingJacks.BackgroundColor3 = col

  815. end

  816. end)

  817. local Anim = Instance.new("Animation")

  818. Anim.AnimationId = "rbxassetid://35154961"

  819. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)

  820. local LoopHeadACTIVE = false

  821. LoopHead.MouseButton1Click:connect(function()

  822. LoopHeadACTIVE = not LoopHeadACTIVE

  823. if LoopHeadACTIVE then

  824. LoopHead.BackgroundColor3 = loc

  825. while wait() do

  826. if track.IsPlaying == false then

  827. if LoopHeadACTIVE then

  828. track:Play(.5, 1, 1e6)

  829. end

  830. end

  831. end

  832. else

  833. track:Stop()

  834. LoopHead.BackgroundColor3 = col

  835. end

  836. end)

  837. local Anim = Instance.new("Animation")

  838. Anim.AnimationId = "rbxassetid://184574340"

  839. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)

  840. local HeroJumpACTIVE = false

  841. HeroJump.MouseButton1Click:connect(function()

  842. HeroJumpACTIVE = not HeroJumpACTIVE

  843. if HeroJumpACTIVE then

  844. HeroJump.BackgroundColor3 = loc

  845. while wait() do

  846. if track.IsPlaying == false then

  847. if HeroJumpACTIVE then

  848. track:Play(.1, 1, 1)

  849. end

  850. end

  851. end

  852. else

  853. track:Stop()

  854. HeroJump.BackgroundColor3 = col

  855. end

  856. end)

  857. local Anim = Instance.new("Animation")

  858. Anim.AnimationId = "rbxassetid://181526230"

  859. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)

  860. local FaintACTIVE = false

  861. Faint.MouseButton1Click:connect(function()

  862. FaintACTIVE = not FaintACTIVE

  863. if FaintACTIVE then

  864. track:Play(.1, 1, 1)

  865. Faint.BackgroundColor3 = loc

  866. else

  867. track:Stop()

  868. Faint.BackgroundColor3 = col

  869. end

  870. end)

  871. local Anim = Instance.new("Animation")

  872. Anim.AnimationId = "rbxassetid://181525546"

  873. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)

  874. local FloorFaintACTIVE = false

  875. FloorFaint.MouseButton1Click:connect(function()

  876. FloorFaintACTIVE = not FloorFaintACTIVE

  877. if FloorFaintACTIVE then

  878. FloorFaint.BackgroundColor3 = loc

  879. while wait() do

  880. if track.IsPlaying == false then

  881. if FloorFaintACTIVE then

  882. track:Play(.1, 1, 2)

  883. end

  884. end

  885. end

  886. else

  887. track:Stop()

  888. FloorFaint.BackgroundColor3 = col

  889. end

  890. end)

  891. local Anim = Instance.new("Animation")

  892. Anim.AnimationId = "rbxassetid://181525546"

  893. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)

  894. local SuperFaintACTIVE = false

  895. SuperFaint.MouseButton1Click:connect(function()

  896. SuperFaintACTIVE = not SuperFaintACTIVE

  897. if SuperFaintACTIVE then

  898. SuperFaint.BackgroundColor3 = loc

  899. while wait() do

  900. if track.IsPlaying == false then

  901. if SuperFaintACTIVE then

  902. track:Play(.1, 0.5, 40)

  903. end

  904. end

  905. end

  906. else

  907. track:Stop()

  908. SuperFaint.BackgroundColor3 = col

  909. end

  910. end)

  911. local Anim = Instance.new("Animation")

  912. Anim.AnimationId = "rbxassetid://313762630"

  913. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)

  914. local LevitateACTIVE = false

  915. Levitate.MouseButton1Click:connect(function()

  916. LevitateACTIVE = not LevitateACTIVE

  917. if LevitateACTIVE then

  918. track:Play(.1, 1, 1)

  919. Levitate.BackgroundColor3 = loc

  920. else

  921. track:Stop()

  922. Levitate.BackgroundColor3 = col

  923. end

  924. end)

  925. local Anim = Instance.new("Animation")

  926. Anim.AnimationId = "rbxassetid://183412246"

  927. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)

  928. local DabACTIVE = false

  929. Dab.MouseButton1Click:connect(function()

  930. DabACTIVE = not DabACTIVE

  931. if DabACTIVE then

  932. Dab.BackgroundColor3 = loc

  933. while wait() do

  934. if track.IsPlaying == false then

  935. if DabACTIVE then

  936. track:Play(.1, 1, 1)

  937. end

  938. end

  939. end

  940. else

  941. track:Stop()

  942. Dab.BackgroundColor3 = col

  943. end

  944. end)

  945. local Anim = Instance.new("Animation")

  946. Anim.AnimationId = "rbxassetid://188632011"

  947. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)

  948. local SpinACTIVE = false

  949. Spinner.MouseButton1Click:connect(function()

  950. SpinACTIVE = not SpinACTIVE

  951. if SpinACTIVE then

  952. Spinner.BackgroundColor3 = loc

  953. while wait() do

  954. if track.IsPlaying == false then

  955. if SpinACTIVE then

  956. track:Play(.1, 1, 2)

  957. end

  958. end

  959. end

  960. else

  961. track:Stop()

  962. Spinner.BackgroundColor3 = col

  963. end

  964. end)

  965. local Anim = Instance.new("Animation")

  966. Anim.AnimationId = "rbxassetid://179224234"

  967. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)

  968. local FloatSitACTIVE = false

  969. FloatSit.MouseButton1Click:connect(function()

  970. FloatSitACTIVE = not FloatSitACTIVE

  971. if FloatSitACTIVE then

  972. track:Play(.1, 1, 1)

  973. FloatSit.BackgroundColor3 = loc

  974. else

  975. track:Stop()

  976. FloatSit.BackgroundColor3 = col

  977. end

  978. end)

  979. local Anim = Instance.new("Animation")

  980. Anim.AnimationId = "rbxassetid://429703734"

  981. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)

  982. local MovingDanceACTIVE = false

  983. MovingDance.MouseButton1Click:connect(function()

  984. MovingDanceACTIVE = not MovingDanceACTIVE

  985. if MovingDanceACTIVE then

  986. MovingDance.BackgroundColor3 = loc

  987. while wait() do

  988. if track.IsPlaying == false then

  989. if MovingDanceACTIVE then

  990. track:Play(.1, 1, 1)

  991. end

  992. end

  993. end

  994. else

  995. track:Stop()

  996. MovingDance.BackgroundColor3 = col

  997. end

  998. end)

  999. local Anim = Instance.new("Animation")

  1000. Anim.AnimationId = "rbxassetid://215384594"

  1001. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)

  1002. local WeirdMoveACTIVE = false

  1003. WeirdMove.MouseButton1Click:connect(function()

  1004. WeirdMoveACTIVE = not WeirdMoveACTIVE

  1005. if WeirdMoveACTIVE then

  1006. track:Play(.1, 1, 1)

  1007. WeirdMove.BackgroundColor3 = loc

  1008. else

  1009. track:Stop()

  1010. WeirdMove.BackgroundColor3 = col

  1011. end

  1012. end)

  1013. local Anim = Instance.new("Animation")

  1014. Anim.AnimationId = "rbxassetid://215384594"

  1015. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)

  1016. local CloneIllusionACTIVE = false

  1017. CloneIllusion.MouseButton1Click:connect(function()

  1018. CloneIllusionACTIVE = not CloneIllusionACTIVE

  1019. if CloneIllusionACTIVE then

  1020. track:Play(.5, 1, 1e7)

  1021. CloneIllusion.BackgroundColor3 = loc

  1022. else

  1023. track:Stop()

  1024. CloneIllusion.BackgroundColor3 = col

  1025. end

  1026. end)

  1027. local Anim = Instance.new("Animation")

  1028. Anim.AnimationId = "rbxassetid://313762630"

  1029. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)

  1030. local GlitchLevitateACTIVE = false

  1031. GlitchLevitate.MouseButton1Click:connect(function()

  1032. GlitchLevitateACTIVE = not GlitchLevitateACTIVE

  1033. if GlitchLevitateACTIVE then

  1034. track:Play(.5, 1, 1e7)

  1035. GlitchLevitate.BackgroundColor3 = loc

  1036. else

  1037. track:Stop()

  1038. GlitchLevitate.BackgroundColor3 = col

  1039. end

  1040. end)

  1041. local Anim = Instance.new("Animation")

  1042. Anim.AnimationId = "rbxassetid://429730430"

  1043. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)

  1044. local SpinDanceACTIVE = false

  1045. SpinDance.MouseButton1Click:connect(function()

  1046. SpinDanceACTIVE = not SpinDanceACTIVE

  1047. if SpinDanceACTIVE then

  1048. SpinDance.BackgroundColor3 = loc

  1049. while wait() do

  1050. if track.IsPlaying == false then

  1051. if SpinDanceACTIVE then

  1052. track:Play(.1, 1, 1)

  1053. end

  1054. end

  1055. end

  1056. else

  1057. track:Stop()

  1058. SpinDance.BackgroundColor3 = col

  1059. end

  1060. end)

  1061. local Anim = Instance.new("Animation")

  1062. Anim.AnimationId = "rbxassetid://45834924"

  1063. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)

  1064. local MoonDanceACTIVE = false

  1065. MoonDance.MouseButton1Click:connect(function()

  1066. MoonDanceACTIVE = not MoonDanceACTIVE

  1067. if MoonDanceACTIVE then

  1068. MoonDance.BackgroundColor3 = loc

  1069. while wait() do

  1070. if track.IsPlaying == false then

  1071. if MoonDanceACTIVE then

  1072. track:Play(.1, 1, 1)

  1073. end

  1074. end

  1075. end

  1076. else

  1077. track:Stop()

  1078. MoonDance.BackgroundColor3 = col

  1079. end

  1080. end)

  1081. local Anim = Instance.new("Animation")

  1082. Anim.AnimationId = "rbxassetid://204062532"

  1083. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)

  1084. local FullPunchACTIVE = false

  1085. FullPunch.MouseButton1Click:connect(function()

  1086. FullPunchACTIVE = not FullPunchACTIVE

  1087. if FullPunchACTIVE then

  1088. FullPunch.BackgroundColor3 = loc

  1089. while wait() do

  1090. if track.IsPlaying == false then

  1091. if FullPunchACTIVE then

  1092. track:Play(.1, 1, 1)

  1093. end

  1094. end

  1095. end

  1096. else

  1097. track:Stop()

  1098. FullPunch.BackgroundColor3 = col

  1099. end

  1100. end)

  1101. local Anim = Instance.new("Animation")

  1102. Anim.AnimationId = "rbxassetid://186934910"

  1103. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)

  1104. local SpinDance2ACTIVE = false

  1105. SpinDance2.MouseButton1Click:connect(function()

  1106. SpinDance2ACTIVE = not SpinDance2ACTIVE

  1107. if SpinDance2ACTIVE then

  1108. SpinDance2.BackgroundColor3 = loc

  1109. while wait() do

  1110. if track.IsPlaying == false then

  1111. if SpinDance2ACTIVE then

  1112. track:Play(.1, 1, 1)

  1113. end

  1114. end

  1115. end

  1116. else

  1117. track:Stop()

  1118. SpinDance2.BackgroundColor3 = col

  1119. end

  1120. end)

  1121. local Anim = Instance.new("Animation")

  1122. Anim.AnimationId = "rbxassetid://204292303"

  1123. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)

  1124. local BowDownACTIVE = false

  1125. BowDown.MouseButton1Click:connect(function()

  1126. BowDownACTIVE = not BowDownACTIVE

  1127. if BowDownACTIVE then

  1128. BowDown.BackgroundColor3 = loc

  1129. while wait() do

  1130. if track.IsPlaying == false then

  1131. if BowDownACTIVE then

  1132. track:Play(.1, 1, 3)

  1133. end

  1134. end

  1135. end

  1136. else

  1137. track:Stop()

  1138. BowDown.BackgroundColor3 = col

  1139. end

  1140. end)

  1141. local Anim = Instance.new("Animation")

  1142. Anim.AnimationId = "rbxassetid://204295235"

  1143. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)

  1144. local SwordSlamACTIVE = false

  1145. SwordSlam.MouseButton1Click:connect(function()

  1146. SwordSlamACTIVE = not SwordSlamACTIVE

  1147. if SwordSlamACTIVE then

  1148. SwordSlam.BackgroundColor3 = loc

  1149. while wait() do

  1150. if track.IsPlaying == false then

  1151. if SwordSlamACTIVE then

  1152. track:Play(.1, 1, 1)

  1153. end

  1154. end

  1155. end

  1156. else

  1157. track:Stop()

  1158. SwordSlam.BackgroundColor3 = col

  1159. end

  1160. end)

  1161. local Anim = Instance.new("Animation")

  1162. Anim.AnimationId = "rbxassetid://204295235"

  1163. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)

  1164. local LoopSlamACTIVE = false

  1165. LoopSlam.MouseButton1Click:connect(function()

  1166. LoopSlamACTIVE = not LoopSlamACTIVE

  1167. if LoopSlamACTIVE then

  1168. LoopSlam.BackgroundColor3 = loc

  1169. while wait() do

  1170. if track.IsPlaying == false then

  1171. if LoopSlamACTIVE then

  1172. track:Play(.1, 1, 1e4)

  1173. end

  1174. end

  1175. end

  1176. else

  1177. track:Stop()

  1178. LoopSlam.BackgroundColor3 = col

  1179. end

  1180. end)

  1181. local Anim = Instance.new("Animation")

  1182. Anim.AnimationId = "rbxassetid://184574340"

  1183. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)

  1184. local MegaInsaneACTIVE = false

  1185. MegaInsane.MouseButton1Click:connect(function()

  1186. MegaInsaneACTIVE = not MegaInsaneACTIVE

  1187. if MegaInsaneACTIVE then

  1188. MegaInsane.BackgroundColor3 = loc

  1189. while wait() do

  1190. if track.IsPlaying == false then

  1191. if MegaInsaneACTIVE then

  1192. track:Play(.1, 0.5, 40)

  1193. end

  1194. end

  1195. end

  1196. else

  1197. track:Stop()

  1198. MegaInsane.BackgroundColor3 = col

  1199. end

  1200. end)

  1201. local Anim = Instance.new("Animation")

  1202. Anim.AnimationId = "rbxassetid://126753849"

  1203. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)

  1204. local SuperPunchACTIVE = false

  1205. SuperPunch.MouseButton1Click:connect(function()

  1206. SuperPunchACTIVE = not SuperPunchACTIVE

  1207. if SuperPunchACTIVE then

  1208. SuperPunch.BackgroundColor3 = loc

  1209. while wait() do

  1210. if track.IsPlaying == false then

  1211. if SuperPunchACTIVE then

  1212. track:Play(.1, 1, 3)

  1213. end

  1214. end

  1215. end

  1216. else

  1217. track:Stop()

  1218. SuperPunch.BackgroundColor3 = col

  1219. end

  1220. end)

  1221. local Anim = Instance.new("Animation")

  1222. Anim.AnimationId = "rbxassetid://218504594"

  1223. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)

  1224. local FullSwingACTIVE = false

  1225. FullSwing.MouseButton1Click:connect(function()

  1226. FullSwingACTIVE = not FullSwingACTIVE

  1227. if FullSwingACTIVE then

  1228. FullSwing.BackgroundColor3 = loc

  1229. while wait() do

  1230. if track.IsPlaying == false then

  1231. if FullSwingACTIVE then

  1232. track:Play(.1, 1, 1)

  1233. end

  1234. end

  1235. end

  1236. else

  1237. track:Stop()

  1238. FullSwing.BackgroundColor3 = col

  1239. end

  1240. end)

  1241. local Anim = Instance.new("Animation")

  1242. Anim.AnimationId = "rbxassetid://259438880"

  1243. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)

  1244. local ArmTurbineACTIVE = false

  1245. ArmTurbine.MouseButton1Click:connect(function()

  1246. ArmTurbineACTIVE = not ArmTurbineACTIVE

  1247. if ArmTurbineACTIVE then

  1248. track:Play(.1, 1, 1e3)

  1249. ArmTurbine.BackgroundColor3 = loc

  1250. else

  1251. track:Stop()

  1252. ArmTurbine.BackgroundColor3 = col

  1253. end

  1254. end)

  1255. local Anim = Instance.new("Animation")

  1256. Anim.AnimationId = "rbxassetid://136801964"

  1257. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)

  1258. local BarrelRollACTIVE = false

  1259. BarrelRoll.MouseButton1Click:connect(function()

  1260. BarrelRollACTIVE = not BarrelRollACTIVE

  1261. if BarrelRollACTIVE then

  1262. BarrelRoll.BackgroundColor3 = loc

  1263. while wait() do

  1264. if track.IsPlaying == false then

  1265. if BarrelRollACTIVE then

  1266. track:Play(.1, 1, 1)

  1267. end

  1268. end

  1269. end

  1270. else

  1271. track:Stop()

  1272. BarrelRoll.BackgroundColor3 = col

  1273. end

  1274. end)

  1275. local Anim = Instance.new("Animation")

  1276. Anim.AnimationId = "rbxassetid://180612465"

  1277. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)

  1278. local ScaredACTIVE = false

  1279. Scared.MouseButton1Click:connect(function()

  1280. ScaredACTIVE = not ScaredACTIVE

  1281. if ScaredACTIVE then

  1282. Scared.BackgroundColor3 = loc

  1283. while wait() do

  1284. if track.IsPlaying == false then

  1285. if ScaredACTIVE then

  1286. track:Play(.1, 1, 1)

  1287. end

  1288. end

  1289. end

  1290. else

  1291. track:Stop()

  1292. Scared.BackgroundColor3 = col

  1293. end

  1294. end)

  1295. local Anim = Instance.new("Animation")

  1296. Anim.AnimationId = "rbxassetid://33796059"

  1297. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)

  1298. local InsaneACTIVE = false

  1299. Insane.MouseButton1Click:connect(function()

  1300. InsaneACTIVE = not InsaneACTIVE

  1301. if InsaneACTIVE then

  1302. track:Play(.1, 1, 1e8)

  1303. Insane.BackgroundColor3 = loc

  1304. else

  1305. track:Stop()

  1306. Insane.BackgroundColor3 = col

  1307. end

  1308. end)

  1309. local Anim = Instance.new("Animation")

  1310. Anim.AnimationId = "rbxassetid://33169583"

  1311. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)

  1312. local ArmDetachACTIVE = false

  1313. ArmDetach.MouseButton1Click:connect(function()

  1314. ArmDetachACTIVE = not ArmDetachACTIVE

  1315. if ArmDetachACTIVE then

  1316. ArmDetach.BackgroundColor3 = loc

  1317. while wait() do

  1318. if track.IsPlaying == false then

  1319. if ArmDetachACTIVE then

  1320. track:Play(.1, 1, 1e6)

  1321. end

  1322. end

  1323. end

  1324. else

  1325. track:Stop()

  1326. ArmDetach.BackgroundColor3 = col

  1327. end

  1328. end)

  1329. local Anim = Instance.new("Animation")

  1330. Anim.AnimationId = "rbxassetid://35978879"

  1331. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)

  1332. local SwordSliceACTIVE = false

  1333. SwordSlice.MouseButton1Click:connect(function()

  1334. SwordSliceACTIVE = not SwordSliceACTIVE

  1335. if SwordSliceACTIVE then

  1336. track:Play(.1, 1, 1)

  1337. SwordSlice.BackgroundColor3 = loc

  1338. else

  1339. track:Stop()

  1340. SwordSlice.BackgroundColor3 = col

  1341. end

  1342. end)

  1343. local Anim = Instance.new("Animation")

  1344. Anim.AnimationId = "rbxassetid://27432691"

  1345. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)

  1346. local InsaneArmsACTIVE = false

  1347. InsaneArms.MouseButton1Click:connect(function()

  1348. InsaneArmsACTIVE = not InsaneArmsACTIVE

  1349. if InsaneArmsACTIVE then

  1350. InsaneArms.BackgroundColor3 = loc

  1351. while wait() do

  1352. if track.IsPlaying == false then

  1353. if InsaneArmsACTIVE then

  1354. track:Play(.1, 1, 1e4)

  1355. end

  1356. end

  1357. end

  1358. else

  1359. track:Stop()

  1360. InsaneArms.BackgroundColor3 = col

  1361. end

  1362. end)

  1363. -- R15

  1364. local Anim = Instance.new("Animation")

  1365. Anim.AnimationId = "rbxassetid://674871189"

  1366. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)

  1367. local CrazySlashACTIVE = false

  1368. CrazySlash.MouseButton1Click:connect(function()

  1369. CrazySlashACTIVE = not CrazySlashACTIVE

  1370. if CrazySlashACTIVE then

  1371. CrazySlash.BackgroundColor3 = rloc

  1372. while wait() do

  1373. if track.IsPlaying == false then

  1374. if CrazySlashACTIVE then

  1375. track:Play(.1, 1, 1)

  1376. end

  1377. end

  1378. end

  1379. else

  1380. track:Stop()

  1381. CrazySlash.BackgroundColor3 = rcol

  1382. end

  1383. end)

  1384. local Anim = Instance.new("Animation")

  1385. Anim.AnimationId = "rbxassetid://582855105"

  1386. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)

  1387. local OpenACTIVE = false

  1388. Open.MouseButton1Click:connect(function()

  1389. OpenACTIVE = not OpenACTIVE

  1390. if OpenACTIVE then

  1391. Open.BackgroundColor3 = rloc

  1392. while wait() do

  1393. if track.IsPlaying == false then

  1394. if OpenACTIVE then

  1395. track:Play(.1, 1, 1)

  1396. end

  1397. end

  1398. end

  1399. else

  1400. track:Stop()

  1401. Open.BackgroundColor3 = rcol

  1402. end

  1403. end)

  1404. local Anim = Instance.new("Animation")

  1405. Anim.AnimationId = "rbxassetid://754658275"

  1406. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)

  1407. local R15SpinnerACTIVE = false

  1408. R15Spinner.MouseButton1Click:connect(function()

  1409. R15SpinnerACTIVE = not R15SpinnerACTIVE

  1410. if R15SpinnerACTIVE then

  1411. R15Spinner.BackgroundColor3 = rloc

  1412. while wait() do

  1413. if track.IsPlaying == false then

  1414. if R15SpinnerACTIVE then

  1415. track:Play(.1, 1, 1)

  1416. end

  1417. end

  1418. end

  1419. else

  1420. track:Stop()

  1421. R15Spinner.BackgroundColor3 = rcol

  1422. end

  1423. end)

  1424. local Anim = Instance.new("Animation")

  1425. Anim.AnimationId = "rbxassetid://582384156"

  1426. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)

  1427. local ArmsOutACTIVE = false

  1428. ArmsOut.MouseButton1Click:connect(function()

  1429. ArmsOutACTIVE = not ArmsOutACTIVE

  1430. if ArmsOutACTIVE then

  1431. ArmsOut.BackgroundColor3 = rloc

  1432. while wait() do

  1433. if track.IsPlaying == false then

  1434. if ArmsOutACTIVE then

  1435. track:Play(.1, 1, 1)

  1436. end

  1437. end

  1438. end

  1439. else

  1440. track:Stop()

  1441. ArmsOut.BackgroundColor3 = rcol

  1442. end

  1443. end)

  1444. local Anim = Instance.new("Animation")

  1445. Anim.AnimationId = "rbxassetid://717879555"

  1446. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)

  1447. local FloatSlashACTIVE = false

  1448. FloatSlash.MouseButton1Click:connect(function()

  1449. FloatSlashACTIVE = not FloatSlashACTIVE

  1450. if FloatSlashACTIVE then

  1451. FloatSlash.BackgroundColor3 = rloc

  1452. while wait() do

  1453. if track.IsPlaying == false then

  1454. if FloatSlashACTIVE then

  1455. track:Play(.1, 1, 1)

  1456. end

  1457. end

  1458. end

  1459. else

  1460. track:Stop()

  1461. FloatSlash.BackgroundColor3 = rcol

  1462. end

  1463. end)

  1464. local Anim = Instance.new("Animation")

  1465. Anim.AnimationId = "rbxassetid://708553116"

  1466. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)

  1467. WeirdZombieACTIVE = false

  1468. WeirdZombie.MouseButton1Click:connect(function()

  1469. WeirdZombieACTIVE = not WeirdZombieACTIVE

  1470. if WeirdZombieACTIVE then

  1471. WeirdZombie.BackgroundColor3 = rloc

  1472. while wait() do

  1473. if track.IsPlaying == false then

  1474. if WeirdZombieACTIVE then

  1475. track:Play(.1, 1, 1)

  1476. end

  1477. end

  1478. end

  1479. else

  1480. track:Stop()

  1481. WeirdZombie.BackgroundColor3 = rcol

  1482. end

  1483. end)

  1484. local Anim = Instance.new("Animation")

  1485. Anim.AnimationId = "rbxassetid://746398327"

  1486. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)

  1487. DownSlashACTIVE = false

  1488. DownSlash.MouseButton1Click:connect(function()

  1489. DownSlashACTIVE = not DownSlashACTIVE

  1490. if DownSlashACTIVE then

  1491. DownSlash.BackgroundColor3 = rloc

  1492. while wait() do

  1493. if track.IsPlaying == false then

  1494. if DownSlashACTIVE then

  1495. track:Play(.1, 1, 1)

  1496. end

  1497. end

  1498. end

  1499. else

  1500. track:Stop()

  1501. DownSlash.BackgroundColor3 = rcol

  1502. end

  1503. end)

  1504. local Anim = Instance.new("Animation")

  1505. Anim.AnimationId = "rbxassetid://675025795"

  1506. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)

  1507. PullACTIVE = false

  1508. Pull.MouseButton1Click:connect(function()

  1509. PullACTIVE = not PullACTIVE

  1510. if PullACTIVE then

  1511. Pull.BackgroundColor3 = rloc

  1512. while wait() do

  1513. if track.IsPlaying == false then

  1514. if PullACTIVE then

  1515. track:Play(.1, 1, 1)

  1516. end

  1517. end

  1518. end

  1519. else

  1520. track:Stop()

  1521. Pull.BackgroundColor3 = rcol

  1522. end

  1523. end)

  1524. local Anim = Instance.new("Animation")

  1525. Anim.AnimationId = "rbxassetid://698251653"

  1526. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)

  1527. CircleArmACTIVE = false

  1528. CircleArm.MouseButton1Click:connect(function()

  1529. CircleArmACTIVE = not CircleArmACTIVE

  1530. if CircleArmACTIVE then

  1531. CircleArm.BackgroundColor3 = rloc

  1532. while wait() do

  1533. if track.IsPlaying == false then

  1534. if CircleArmACTIVE then

  1535. track:Play(.1, 1, 1)

  1536. end

  1537. end

  1538. end

  1539. else

  1540. track:Stop()

  1541. CircleArm.BackgroundColor3 = rcol

  1542. end

  1543. end)

  1544. local Anim = Instance.new("Animation")

  1545. Anim.AnimationId = "rbxassetid://696096087"

  1546. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)

  1547. BendACTIVE = false

  1548. Bend.MouseButton1Click:connect(function()

  1549. BendACTIVE = not BendACTIVE

  1550. if BendACTIVE then

  1551. Bend.BackgroundColor3 = rloc

  1552. while wait() do

  1553. if track.IsPlaying == false then

  1554. if BendACTIVE then

  1555. track:Play(.1, 1, 1)

  1556. end

  1557. end

  1558. end

  1559. else

  1560. track:Stop()

  1561. Bend.BackgroundColor3 = rcol

  1562. end

  1563. end)

  1564. local Anim = Instance.new("Animation")

  1565. Anim.AnimationId = "rbxassetid://675025570"

  1566. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)

  1567. RotateSlashACTIVE = false

  1568. RotateSlash.MouseButton1Click:connect(function()

  1569. RotateSlashACTIVE = not RotateSlashACTIVE

  1570. if RotateSlashACTIVE then

  1571. RotateSlash.BackgroundColor3 = rloc

  1572. while wait() do

  1573. if track.IsPlaying == false then

  1574. if RotateSlashACTIVE then

  1575. track:Play(.1, 1, 1)

  1576. end

  1577. end

  1578. end

  1579. else

  1580. track:Stop()

  1581. RotateSlash.BackgroundColor3 = rcol

  1582. end

  1583. end)

  1584. local Anim = Instance.new("Animation")

  1585. Anim.AnimationId = "rbxassetid://754656200"

  1586. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)

  1587. FlingArmsACTIVE = false

  1588. FlingArms.MouseButton1Click:connect(function()

  1589. FlingArmsACTIVE = not FlingArmsACTIVE

  1590. if FlingArmsACTIVE then

  1591. FlingArms.BackgroundColor3 = rloc

  1592. while wait() do

  1593. if track.IsPlaying == false then

  1594. if FlingArmsACTIVE then

  1595. track:Play(.1, 1, 10)

  1596. end

  1597. end

  1598. end

  1599. else

  1600. track:Stop()

  1601. FlingArms.BackgroundColor3 = rcol

  1602. end

  1603. end)

  1604. -- Finished update!

FE Animations GUI - Pastebin.com (2024)
Top Articles
Latest Posts
Article information

Author: The Hon. Margery Christiansen

Last Updated:

Views: 5956

Rating: 5 / 5 (70 voted)

Reviews: 85% of readers found this page helpful

Author information

Name: The Hon. Margery Christiansen

Birthday: 2000-07-07

Address: 5050 Breitenberg Knoll, New Robert, MI 45409

Phone: +2556892639372

Job: Investor Mining Engineer

Hobby: Sketching, Cosplaying, Glassblowing, Genealogy, Crocheting, Archery, Skateboarding

Introduction: My name is The Hon. Margery Christiansen, I am a bright, adorable, precious, inexpensive, gorgeous, comfortable, happy person who loves writing and wants to share my knowledge and understanding with you.