Advertisement
BillyOrIsIt

FE Animations GUI

Jun 16th, 2018
166,434
1
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 54.28 KB | None | 1 0
  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.  
  12. local CrazySlash = Instance.new("TextButton")--COMPLETE
  13. local Open = Instance.new("TextButton")--COMPLETE
  14. local R15Spinner = Instance.new("TextButton")--COMPLETE
  15. local ArmsOut = Instance.new("TextButton")--COMPLETE
  16. local FloatSlash = Instance.new("TextButton")--COMPLETE
  17. local WeirdZombie = Instance.new("TextButton")--COMPLETE
  18. local DownSlash = Instance.new("TextButton")--COMPLETE
  19. local Pull = Instance.new("TextButton")--COMPLETE
  20. local CircleArm = Instance.new("TextButton")--COMPLETE
  21. local Bend = Instance.new("TextButton")--COMPLETE
  22. local RotateSlash = Instance.new("TextButton")--COMPLETE
  23. local FlingArms = Instance.new("TextButton")--COMPLETE
  24.  
  25. local FullSwing = Instance.new("TextButton")--COMPLETE
  26. local GlitchLevitate = Instance.new("TextButton")--COMPLETE
  27. local MoonDance = Instance.new("TextButton")--COMPLETE
  28. local FullPunch = Instance.new("TextButton")--COMPLETE
  29. local Crouch = Instance.new("TextButton")--COMPLETE
  30. local SpinDance = Instance.new("TextButton")--COMPLETE
  31. local FloorFaint = Instance.new("TextButton")--COMPLETE
  32. local JumpingJacks = Instance.new("TextButton")--COMPLETE
  33. local Spinner = Instance.new("TextButton")--COMPLETE
  34. local MegaInsane = Instance.new("TextButton")--COMPLETE
  35. local ArmDetach = Instance.new("TextButton")--COMPLETE
  36. local WeirdMove = Instance.new("TextButton")--COMPLETE
  37. local Faint = Instance.new("TextButton")--COMPLETE
  38. local CloneIllusion = Instance.new("TextButton")--COMPLETE
  39. local Levitate = Instance.new("TextButton")--COMPLETE
  40. local DinoWalk = Instance.new("TextButton")--COMPLETE
  41. local FloorCrawl = Instance.new("TextButton")--COMPLETE
  42. local SwordSlam = Instance.new("TextButton")--COMPLETE
  43. local LoopHead = Instance.new("TextButton")--COMPLETE
  44. local HeroJump = Instance.new("TextButton")--COMPLETE
  45. local Insane = Instance.new("TextButton")--COMPLETE
  46. local FloatingHead = Instance.new("TextButton")--COMPLETE
  47. local HeadThrow = Instance.new("TextButton")--COMPLETE
  48. local MovingDance = Instance.new("TextButton")--COMPLETE
  49. local SuperPunch = Instance.new("TextButton")--COMPLETE
  50. local ArmTurbine = Instance.new("TextButton")--COMPLETE
  51. local Dab = Instance.new("TextButton")--COMPLETE
  52. local FloatSit = Instance.new("TextButton")--COMPLETE
  53. local SuperFaint = Instance.new("TextButton")--COMPLETE
  54. local BarrelRoll = Instance.new("TextButton")--COMPLETE
  55. local Scared = Instance.new("TextButton")--COMPLETE
  56. local InsaneArms = Instance.new("TextButton")--COMPLETE
  57. local SwordSlice = Instance.new("TextButton")--COMPLETE
  58. local SpinDance2 = Instance.new("TextButton")--COMPLETE
  59. local BowDown = Instance.new("TextButton")--COMPLETE
  60. local LoopSlam = Instance.new("TextButton")--COMPLETE
  61.  
  62. local GuiTopFrame = Instance.new("Frame") -- Top of the main frame
  63. local CloseGUI = Instance.new("TextButton") -- To close the GUI
  64. local Title = Instance.new("TextLabel") -- Actual title of GUI, Energize
  65.  
  66. -- Properties
  67.  
  68. Energize.Name = "Energize"
  69. Energize.Parent = game.Players.LocalPlayer.PlayerGui
  70.  
  71. SideFrame.Name = "SideFrame"
  72. SideFrame.Parent = Energize
  73. SideFrame.Active = true
  74. SideFrame.BackgroundColor3 = Color3.new(1, 0.329412, 0.329412)
  75. SideFrame.Draggable = true
  76. SideFrame.Position = UDim2.new(0, 376, 0, 125)
  77. SideFrame.Size = UDim2.new(0, 460, 0, 32)
  78. SideFrame.Visible = false
  79.  
  80. OpenGUI.Name = "OpenGUI"
  81. OpenGUI.Parent = SideFrame
  82. OpenGUI.BackgroundColor3 = Color3.new(1, 1, 1)
  83. OpenGUI.BackgroundTransparency = 1
  84. OpenGUI.Position = UDim2.new(0, 426, 0, 0)
  85. OpenGUI.Size = UDim2.new(0, 34, 0, 32)
  86. OpenGUI.Font = Enum.Font.SourceSans
  87. OpenGUI.FontSize = Enum.FontSize.Size48
  88. OpenGUI.Text = "X"
  89. OpenGUI.TextColor3 = Color3.new(0.333333, 0, 0)
  90. OpenGUI.TextSize = 40
  91. OpenGUI.TextWrapped = true
  92.  
  93. SideFrameTitle.Name = "SideFrameTitle"
  94. SideFrameTitle.Parent = SideFrame
  95. SideFrameTitle.BackgroundColor3 = Color3.new(1, 1, 1)
  96. SideFrameTitle.BackgroundTransparency = 1
  97. SideFrameTitle.Position = UDim2.new(0, 170, 0, 0)
  98. SideFrameTitle.Size = UDim2.new(0, 119, 0, 31)
  99. SideFrameTitle.Font = Enum.Font.Arial
  100. SideFrameTitle.FontSize = Enum.FontSize.Size24
  101. SideFrameTitle.Text = "¦Energize¦"
  102. SideFrameTitle.TextSize = 21
  103. SideFrameTitle.TextStrokeColor3 = Color3.new(0.27451, 0.92549, 0.905882)
  104. SideFrameTitle.TextStrokeTransparency = 0.69999998807907
  105.  
  106. MainFrame.Name = "MainFrame"
  107. MainFrame.Parent = Energize
  108. MainFrame.Active = true
  109. MainFrame.BackgroundColor3 = Color3.new(1, 1, 1)
  110. MainFrame.BackgroundTransparency = 1
  111. MainFrame.Draggable = true
  112. MainFrame.Position = UDim2.new(0, 376, 0, 125)
  113. MainFrame.Size = UDim2.new(0, 444, 0, 280)
  114.  
  115. GuiBottomFrame.Name = "Gui BottomFrame"
  116. GuiBottomFrame.Parent = MainFrame
  117. GuiBottomFrame.BackgroundColor3 = Color3.new(1, 0.329412, 0.329412)
  118. GuiBottomFrame.BorderColor3 = Color3.new(0.243137, 0.243137, 0.243137)
  119. GuiBottomFrame.Position = UDim2.new(0, 0, 0, 247)
  120. GuiBottomFrame.Size = UDim2.new(0, 460, 0, 32)
  121.  
  122. Credits.Name = "Credits"
  123. Credits.Parent = GuiBottomFrame
  124. Credits.BackgroundColor3 = Color3.new(1, 1, 1)
  125. Credits.BackgroundTransparency = 1
  126. Credits.Size = UDim2.new(0, 460, 0, 32)
  127. Credits.FontSize = Enum.FontSize.Size14
  128. Credits.Text = "By illremember ¦FE Animations Gui"
  129. Credits.TextColor3 = Color3.new(0.219608, 0.219608, 0.219608)
  130. Credits.TextSize = 14
  131. Credits.TextStrokeColor3 = Color3.new(0.141176, 0.870588, 0.713726)
  132. Credits.TextStrokeTransparency = 0.69999998807907
  133. Credits.TextWrapped = true
  134.  
  135. ScrollingFrame.Parent = MainFrame
  136. ScrollingFrame.BackgroundColor3 = Color3.new(1, 0.564706, 0.564706)
  137. ScrollingFrame.Position = UDim2.new(0, 0, 0, 32)
  138. ScrollingFrame.Size = UDim2.new(0, 460, 0, 215)
  139. ScrollingFrame.ScrollBarThickness = 13
  140.  
  141. FullSwing.Name = "FullSwing"
  142. FullSwing.Parent = ScrollingFrame
  143. FullSwing.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627)
  144. FullSwing.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)
  145. FullSwing.Position = UDim2.new(0, 17, 0, 322)
  146. FullSwing.Size = UDim2.new(0, 119, 0, 34)
  147. FullSwing.Font = Enum.Font.Highway
  148. FullSwing.FontSize = Enum.FontSize.Size24
  149. FullSwing.Text = "Full Swing"
  150. FullSwing.TextSize = 20
  151. FullSwing.TextWrapped = true
  152.  
  153. GlitchLevitate.Name = "GlitchLevitate"
  154. GlitchLevitate.Parent = ScrollingFrame
  155. GlitchLevitate.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627)
  156. GlitchLevitate.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)
  157. GlitchLevitate.Position = UDim2.new(0, 319, 0, 322)
  158. GlitchLevitate.Size = UDim2.new(0, 119, 0, 34)
  159. GlitchLevitate.Font = Enum.Font.Highway
  160. GlitchLevitate.FontSize = Enum.FontSize.Size24
  161. GlitchLevitate.Text = "Glitch Levitate"
  162. GlitchLevitate.TextSize = 20
  163. GlitchLevitate.TextWrapped = true
  164.  
  165. MoonDance.Name = "MoonDance"
  166. MoonDance.Parent = ScrollingFrame
  167. MoonDance.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627)
  168. MoonDance.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)
  169. MoonDance.Position = UDim2.new(0, 319, 0, 280)
  170. MoonDance.Size = UDim2.new(0, 119, 0, 34)
  171. MoonDance.Font = Enum.Font.Highway
  172. MoonDance.FontSize = Enum.FontSize.Size24
  173. MoonDance.Text = "Moon Dance"
  174. MoonDance.TextSize = 20
  175. MoonDance.TextWrapped = true
  176.  
  177. FullPunch.Name = "FullPunch"
  178. FullPunch.Parent = ScrollingFrame
  179. FullPunch.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627)
  180. FullPunch.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)
  181. FullPunch.Position = UDim2.new(0, 17, 0, 280)
  182. FullPunch.Size = UDim2.new(0, 119, 0, 34)
  183. FullPunch.Font = Enum.Font.Highway
  184. FullPunch.FontSize = Enum.FontSize.Size24
  185. FullPunch.Text = "Full Punch"
  186. FullPunch.TextSize = 20
  187. FullPunch.TextWrapped = true
  188.  
  189. Crouch.Name = "Crouch"
  190. Crouch.Parent = ScrollingFrame
  191. Crouch.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627)
  192. Crouch.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)
  193. Crouch.Position = UDim2.new(0, 168, 0, 280)
  194. Crouch.Size = UDim2.new(0, 119, 0, 34)
  195. Crouch.Font = Enum.Font.Highway
  196. Crouch.FontSize = Enum.FontSize.Size24
  197. Crouch.Text = "Crouch"
  198. Crouch.TextSize = 20
  199. Crouch.TextWrapped = true
  200.  
  201. SpinDance.Name = "SpinDance"
  202. SpinDance.Parent = ScrollingFrame
  203. SpinDance.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627)
  204. SpinDance.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)
  205. SpinDance.Position = UDim2.new(0, 168, 0, 236)
  206. SpinDance.Size = UDim2.new(0, 119, 0, 34)
  207. SpinDance.Font = Enum.Font.Highway
  208. SpinDance.FontSize = Enum.FontSize.Size24
  209. SpinDance.Text = "Spin Dance"
  210. SpinDance.TextSize = 20
  211. SpinDance.TextWrapped = true
  212.  
  213. FloorFaint.Name = "FloorFaint"
  214. FloorFaint.Parent = ScrollingFrame
  215. FloorFaint.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627)
  216. FloorFaint.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)
  217. FloorFaint.Position = UDim2.new(0, 17, 0, 236)
  218. FloorFaint.Size = UDim2.new(0, 119, 0, 34)
  219. FloorFaint.Font = Enum.Font.Highway
  220. FloorFaint.FontSize = Enum.FontSize.Size24
  221. FloorFaint.Text = "Floor Faint"
  222. FloorFaint.TextSize = 20
  223. FloorFaint.TextWrapped = true
  224.  
  225. JumpingJacks.Name = "JumpingJacks"
  226. JumpingJacks.Parent = ScrollingFrame
  227. JumpingJacks.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627)
  228. JumpingJacks.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)
  229. JumpingJacks.Position = UDim2.new(0, 319, 0, 236)
  230. JumpingJacks.Size = UDim2.new(0, 119, 0, 34)
  231. JumpingJacks.Font = Enum.Font.Highway
  232. JumpingJacks.FontSize = Enum.FontSize.Size24
  233. JumpingJacks.Text = "Jumping Jacks"
  234. JumpingJacks.TextSize = 20
  235. JumpingJacks.TextWrapped = true
  236.  
  237. Spinner.Name = "Spinner"
  238. Spinner.Parent = ScrollingFrame
  239. Spinner.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627)
  240. Spinner.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)
  241. Spinner.Position = UDim2.new(0, 17, 0, 192)
  242. Spinner.Size = UDim2.new(0, 119, 0, 34)
  243. Spinner.Font = Enum.Font.Highway
  244. Spinner.FontSize = Enum.FontSize.Size24
  245. Spinner.Text = "Spinner"
  246. Spinner.TextSize = 20
  247. Spinner.TextWrapped = true
  248.  
  249. MegaInsane.Name = "MegaInsane"
  250. MegaInsane.Parent = ScrollingFrame
  251. MegaInsane.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627)
  252. MegaInsane.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)
  253. MegaInsane.Position = UDim2.new(0, 168, 0, 192)
  254. MegaInsane.Size = UDim2.new(0, 119, 0, 34)
  255. MegaInsane.Font = Enum.Font.Highway
  256. MegaInsane.FontSize = Enum.FontSize.Size24
  257. MegaInsane.Text = "Mega Insane"
  258. MegaInsane.TextSize = 20
  259. MegaInsane.TextWrapped = true
  260.  
  261. ArmDetach.Name = "ArmDetach"
  262. ArmDetach.Parent = ScrollingFrame
  263. ArmDetach.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627)
  264. ArmDetach.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)
  265. ArmDetach.Position = UDim2.new(0, 319, 0, 192)
  266. ArmDetach.Size = UDim2.new(0, 119, 0, 34)
  267. ArmDetach.Font = Enum.Font.Highway
  268. ArmDetach.FontSize = Enum.FontSize.Size24
  269. ArmDetach.Text = "Arm Detach"
  270. ArmDetach.TextSize = 20
  271. ArmDetach.TextWrapped = true
  272.  
  273. WeirdMove.Name = "WeirdMove"
  274. WeirdMove.Parent = ScrollingFrame
  275. WeirdMove.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627)
  276. WeirdMove.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)
  277. WeirdMove.Position = UDim2.new(0, 168, 0, 148)
  278. WeirdMove.Size = UDim2.new(0, 119, 0, 34)
  279. WeirdMove.Font = Enum.Font.Highway
  280. WeirdMove.FontSize = Enum.FontSize.Size24
  281. WeirdMove.Text = "Weird Move"
  282. WeirdMove.TextSize = 20
  283. WeirdMove.TextWrapped = true
  284.  
  285. Faint.Name = "Faint"
  286. Faint.Parent = ScrollingFrame
  287. Faint.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627)
  288. Faint.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)
  289. Faint.Position = UDim2.new(0, 17, 0, 148)
  290. Faint.Size = UDim2.new(0, 119, 0, 34)
  291. Faint.Font = Enum.Font.Highway
  292. Faint.FontSize = Enum.FontSize.Size24
  293. Faint.Text = "Faint"
  294. Faint.TextSize = 20
  295. Faint.TextWrapped = true
  296.  
  297. CloneIllusion.Name = "CloneIllusion"
  298. CloneIllusion.Parent = ScrollingFrame
  299. CloneIllusion.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627)
  300. CloneIllusion.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)
  301. CloneIllusion.Position = UDim2.new(0, 319, 0, 148)
  302. CloneIllusion.Size = UDim2.new(0, 119, 0, 34)
  303. CloneIllusion.Font = Enum.Font.Highway
  304. CloneIllusion.FontSize = Enum.FontSize.Size24
  305. CloneIllusion.Text = "Clone Illusion"
  306. CloneIllusion.TextSize = 20
  307. CloneIllusion.TextWrapped = true
  308.  
  309. Levitate.Name = "Levitate"
  310. Levitate.Parent = ScrollingFrame
  311. Levitate.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627)
  312. Levitate.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)
  313. Levitate.Position = UDim2.new(0, 17, 0, 104)
  314. Levitate.Size = UDim2.new(0, 119, 0, 34)
  315. Levitate.Font = Enum.Font.Highway
  316. Levitate.FontSize = Enum.FontSize.Size24
  317. Levitate.Text = "Levitate"
  318. Levitate.TextSize = 20
  319. Levitate.TextWrapped = true
  320.  
  321. DinoWalk.Name = "DinoWalk"
  322. DinoWalk.Parent = ScrollingFrame
  323. DinoWalk.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627)
  324. DinoWalk.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)
  325. DinoWalk.Position = UDim2.new(0, 168, 0, 104)
  326. DinoWalk.Size = UDim2.new(0, 119, 0, 34)
  327. DinoWalk.Font = Enum.Font.Highway
  328. DinoWalk.FontSize = Enum.FontSize.Size24
  329. DinoWalk.Text = "Dino Walk"
  330. DinoWalk.TextSize = 20
  331. DinoWalk.TextWrapped = true
  332.  
  333. FloorCrawl.Name = "FloorCrawl"
  334. FloorCrawl.Parent = ScrollingFrame
  335. FloorCrawl.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627)
  336. FloorCrawl.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)
  337. FloorCrawl.Position = UDim2.new(0, 319, 0, 104)
  338. FloorCrawl.Size = UDim2.new(0, 119, 0, 34)
  339. FloorCrawl.Font = Enum.Font.Highway
  340. FloorCrawl.FontSize = Enum.FontSize.Size24
  341. FloorCrawl.Text = "Floor Crawl"
  342. FloorCrawl.TextSize = 20
  343. FloorCrawl.TextWrapped = true
  344.  
  345. SwordSlam.Name = "SwordSlam"
  346. SwordSlam.Parent = ScrollingFrame
  347. SwordSlam.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627)
  348. SwordSlam.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)
  349. SwordSlam.Position = UDim2.new(0, 319, 0, 60)
  350. SwordSlam.Size = UDim2.new(0, 119, 0, 34)
  351. SwordSlam.Font = Enum.Font.Highway
  352. SwordSlam.FontSize = Enum.FontSize.Size24
  353. SwordSlam.Text = "Sword Slam"
  354. SwordSlam.TextSize = 20
  355. SwordSlam.TextWrapped = true
  356.  
  357. LoopHead.Name = "LoopHead"
  358. LoopHead.Parent = ScrollingFrame
  359. LoopHead.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627)
  360. LoopHead.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)
  361. LoopHead.Position = UDim2.new(0, 168, 0, 60)
  362. LoopHead.Size = UDim2.new(0, 119, 0, 34)
  363. LoopHead.Font = Enum.Font.Highway
  364. LoopHead.FontSize = Enum.FontSize.Size24
  365. LoopHead.Text = "Loop Head"
  366. LoopHead.TextSize = 20
  367. LoopHead.TextWrapped = true
  368.  
  369. HeroJump.Name = "HeroJump"
  370. HeroJump.Parent = ScrollingFrame
  371. HeroJump.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627)
  372. HeroJump.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)
  373. HeroJump.Position = UDim2.new(0, 17, 0, 60)
  374. HeroJump.Size = UDim2.new(0, 119, 0, 34)
  375. HeroJump.Font = Enum.Font.Highway
  376. HeroJump.FontSize = Enum.FontSize.Size24
  377. HeroJump.Text = "Hero Jump"
  378. HeroJump.TextSize = 20
  379. HeroJump.TextWrapped = true
  380.  
  381. Insane.Name = "Insane"
  382. Insane.Parent = ScrollingFrame
  383. Insane.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627)
  384. Insane.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)
  385. Insane.Position = UDim2.new(0, 319, 0, 16)
  386. Insane.Size = UDim2.new(0, 119, 0, 34)
  387. Insane.Font = Enum.Font.Highway
  388. Insane.FontSize = Enum.FontSize.Size24
  389. Insane.Text = "Insane"
  390. Insane.TextSize = 20
  391. Insane.TextWrapped = true
  392.  
  393. FloatingHead.Name = "FloatingHead"
  394. FloatingHead.Parent = ScrollingFrame
  395. FloatingHead.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627)
  396. FloatingHead.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)
  397. FloatingHead.Position = UDim2.new(0, 168, 0, 16)
  398. FloatingHead.Size = UDim2.new(0, 119, 0, 34)
  399. FloatingHead.Font = Enum.Font.Highway
  400. FloatingHead.FontSize = Enum.FontSize.Size24
  401. FloatingHead.Text = "Floating Head"
  402. FloatingHead.TextSize = 20
  403. FloatingHead.TextWrapped = true
  404.  
  405. HeadThrow.Name = "HeadThrow"
  406. HeadThrow.Parent = ScrollingFrame
  407. HeadThrow.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627)
  408. HeadThrow.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)
  409. HeadThrow.Position = UDim2.new(0, 17, 0, 16)
  410. HeadThrow.Size = UDim2.new(0, 119, 0, 34)
  411. HeadThrow.Font = Enum.Font.Highway
  412. HeadThrow.FontSize = Enum.FontSize.Size24
  413. HeadThrow.Text = "Head Throw"
  414. HeadThrow.TextSize = 20
  415. HeadThrow.TextWrapped = true
  416.  
  417. MovingDance.Name = "MovingDance"
  418. MovingDance.Parent = ScrollingFrame
  419. MovingDance.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627)
  420. MovingDance.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)
  421. MovingDance.Position = UDim2.new(0, 168, 0, 324)
  422. MovingDance.Size = UDim2.new(0, 119, 0, 34)
  423. MovingDance.Font = Enum.Font.Highway
  424. MovingDance.FontSize = Enum.FontSize.Size24
  425. MovingDance.Text = "Moving Dance"
  426. MovingDance.TextSize = 20
  427. MovingDance.TextWrapped = true
  428.  
  429. SuperPunch.Name = "SuperPunch"
  430. SuperPunch.Parent = ScrollingFrame
  431. SuperPunch.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627)
  432. SuperPunch.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)
  433. SuperPunch.Position = UDim2.new(0, 168, 0, 366)
  434. SuperPunch.Size = UDim2.new(0, 119, 0, 34)
  435. SuperPunch.Font = Enum.Font.Highway
  436. SuperPunch.FontSize = Enum.FontSize.Size24
  437. SuperPunch.Text = "Super Punch"
  438. SuperPunch.TextSize = 20
  439. SuperPunch.TextWrapped = true
  440.  
  441. ArmTurbine.Name = "ArmTurbine"
  442. ArmTurbine.Parent = ScrollingFrame
  443. ArmTurbine.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627)
  444. ArmTurbine.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)
  445. ArmTurbine.Position = UDim2.new(0, 319, 0, 366)
  446. ArmTurbine.Size = UDim2.new(0, 119, 0, 34)
  447. ArmTurbine.Font = Enum.Font.Highway
  448. ArmTurbine.FontSize = Enum.FontSize.Size24
  449. ArmTurbine.Text = "Arm Turbine"
  450. ArmTurbine.TextSize = 20
  451. ArmTurbine.TextWrapped = true
  452.  
  453. Dab.Name = "Dab"
  454. Dab.Parent = ScrollingFrame
  455. Dab.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627)
  456. Dab.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)
  457. Dab.Position = UDim2.new(0, 17, 0, 366)
  458. Dab.Size = UDim2.new(0, 119, 0, 34)
  459. Dab.Font = Enum.Font.Highway
  460. Dab.FontSize = Enum.FontSize.Size24
  461. Dab.Text = "Dab"
  462. Dab.TextSize = 20
  463. Dab.TextWrapped = true
  464.  
  465. FloatSit.Name = "FloatSit"
  466. FloatSit.Parent = ScrollingFrame
  467. FloatSit.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627)
  468. FloatSit.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)
  469. FloatSit.Position = UDim2.new(0, 168, 0, 410)
  470. FloatSit.Size = UDim2.new(0, 119, 0, 34)
  471. FloatSit.Font = Enum.Font.Highway
  472. FloatSit.FontSize = Enum.FontSize.Size24
  473. FloatSit.Text = "Float Sit"
  474. FloatSit.TextSize = 20
  475. FloatSit.TextWrapped = true
  476.  
  477. SuperFaint.Name = "SuperFaint"
  478. SuperFaint.Parent = ScrollingFrame
  479. SuperFaint.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627)
  480. SuperFaint.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)
  481. SuperFaint.Position = UDim2.new(0, 17, 0, 498)
  482. SuperFaint.Size = UDim2.new(0, 119, 0, 34)
  483. SuperFaint.Font = Enum.Font.Highway
  484. SuperFaint.FontSize = Enum.FontSize.Size24
  485. SuperFaint.Text = "Super Faint"
  486. SuperFaint.TextSize = 20
  487. SuperFaint.TextWrapped = true
  488.  
  489. BarrelRoll.Name = "BarrelRoll"
  490. BarrelRoll.Parent = ScrollingFrame
  491. BarrelRoll.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627)
  492. BarrelRoll.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)
  493. BarrelRoll.Position = UDim2.new(0, 319, 0, 410)
  494. BarrelRoll.Size = UDim2.new(0, 119, 0, 34)
  495. BarrelRoll.Font = Enum.Font.Highway
  496. BarrelRoll.FontSize = Enum.FontSize.Size24
  497. BarrelRoll.Text = "Barrel Roll"
  498. BarrelRoll.TextSize = 20
  499. BarrelRoll.TextWrapped = true
  500.  
  501. Scared.Name = "Scared"
  502. Scared.Parent = ScrollingFrame
  503. Scared.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627)
  504. Scared.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)
  505. Scared.Position = UDim2.new(0, 319, 0, 454)
  506. Scared.Size = UDim2.new(0, 119, 0, 34)
  507. Scared.Font = Enum.Font.Highway
  508. Scared.FontSize = Enum.FontSize.Size24
  509. Scared.Text = "Scared"
  510. Scared.TextSize = 20
  511. Scared.TextWrapped = true
  512.  
  513. InsaneArms.Name = "InsaneArms"
  514. InsaneArms.Parent = ScrollingFrame
  515. InsaneArms.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627)
  516. InsaneArms.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)
  517. InsaneArms.Position = UDim2.new(0, 17, 0, 454)
  518. InsaneArms.Size = UDim2.new(0, 119, 0, 34)
  519. InsaneArms.Font = Enum.Font.Highway
  520. InsaneArms.FontSize = Enum.FontSize.Size24
  521. InsaneArms.Text = "Insane Arms"
  522. InsaneArms.TextSize = 20
  523. InsaneArms.TextWrapped = true
  524.  
  525. SwordSlice.Name = "SwordSlice"
  526. SwordSlice.Parent = ScrollingFrame
  527. SwordSlice.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627)
  528. SwordSlice.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)
  529. SwordSlice.Position = UDim2.new(0, 168, 0, 454)
  530. SwordSlice.Size = UDim2.new(0, 119, 0, 34)
  531. SwordSlice.Font = Enum.Font.Highway
  532. SwordSlice.FontSize = Enum.FontSize.Size24
  533. SwordSlice.Text = "Sword Slice"
  534. SwordSlice.TextSize = 20
  535. SwordSlice.TextWrapped = true
  536.  
  537. SpinDance2.Name = "SpinDance2"
  538. SpinDance2.Parent = ScrollingFrame
  539. SpinDance2.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627)
  540. SpinDance2.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)
  541. SpinDance2.Position = UDim2.new(0, 168, 0, 498)
  542. SpinDance2.Size = UDim2.new(0, 119, 0, 34)
  543. SpinDance2.Font = Enum.Font.Highway
  544. SpinDance2.FontSize = Enum.FontSize.Size24
  545. SpinDance2.Text = "Spin Dance 2"
  546. SpinDance2.TextSize = 20
  547. SpinDance2.TextWrapped = true
  548.  
  549. BowDown.Name = "BowDown"
  550. BowDown.Parent = ScrollingFrame
  551. BowDown.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627)
  552. BowDown.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)
  553. BowDown.Position = UDim2.new(0, 319, 0, 498)
  554. BowDown.Size = UDim2.new(0, 119, 0, 34)
  555. BowDown.Font = Enum.Font.Highway
  556. BowDown.FontSize = Enum.FontSize.Size24
  557. BowDown.Text = "Bow Down"
  558. BowDown.TextSize = 20
  559. BowDown.TextWrapped = true
  560.  
  561. LoopSlam.Name = "LoopSlam"
  562. LoopSlam.Parent = ScrollingFrame
  563. LoopSlam.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627)
  564. LoopSlam.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)
  565. LoopSlam.Position = UDim2.new(0, 17, 0, 410)
  566. LoopSlam.Size = UDim2.new(0, 119, 0, 34)
  567. LoopSlam.Font = Enum.Font.Highway
  568. LoopSlam.FontSize = Enum.FontSize.Size24
  569. LoopSlam.Text = "Loop Slam"
  570. LoopSlam.TextSize = 20
  571. LoopSlam.TextWrapped = true
  572.  
  573. GuiTopFrame.Name = "Gui TopFrame"
  574. GuiTopFrame.Parent = MainFrame
  575. GuiTopFrame.BackgroundColor3 = Color3.new(1, 0.329412, 0.329412)
  576. GuiTopFrame.BorderColor3 = Color3.new(0.243137, 0.243137, 0.243137)
  577. GuiTopFrame.Size = UDim2.new(0, 460, 0, 32)
  578.  
  579. CloseGUI.Name = "CloseGUI"
  580. CloseGUI.Parent = GuiTopFrame
  581. CloseGUI.BackgroundColor3 = Color3.new(1, 1, 1)
  582. CloseGUI.BackgroundTransparency = 1
  583. CloseGUI.Position = UDim2.new(0, 426, 0, 0)
  584. CloseGUI.Size = UDim2.new(0, 34, 0, 32)
  585. CloseGUI.Font = Enum.Font.SourceSans
  586. CloseGUI.FontSize = Enum.FontSize.Size48
  587. CloseGUI.Text = "X"
  588. CloseGUI.TextColor3 = Color3.new(0.333333, 0, 0)
  589. CloseGUI.TextSize = 40
  590. CloseGUI.TextWrapped = true
  591.  
  592. Title.Name = "Title"
  593. Title.Parent = GuiTopFrame
  594. Title.BackgroundColor3 = Color3.new(1, 1, 1)
  595. Title.BackgroundTransparency = 1
  596. Title.Size = UDim2.new(0, 460, 0, 32)
  597. Title.FontSize = Enum.FontSize.Size14
  598. Title.Text = "¦Energize¦"
  599. Title.TextColor3 = Color3.new(0.164706, 0.164706, 0.164706)
  600. Title.TextSize = 14
  601. Title.TextStrokeColor3 = Color3.new(0.384314, 0.917647, 1)
  602. Title.TextStrokeTransparency = 0.69999998807907
  603. Title.TextWrapped = true
  604.  
  605. CheckR.Name = "CheckR"
  606. CheckR.Parent = GuiTopFrame
  607. CheckR.BackgroundColor3 = Color3.new(1, 1, 1)
  608. CheckR.BackgroundTransparency = 1
  609. CheckR.Size = UDim2.new(0, 171, 0, 32)
  610. CheckR.Font = Enum.Font.SourceSansBold
  611. CheckR.FontSize = Enum.FontSize.Size14
  612. CheckR.Text = "Text"
  613. CheckR.TextScaled = true
  614. CheckR.TextSize = 14
  615. CheckR.TextWrapped = true
  616.  
  617. ScrollingFrameR15.Name = "ScrollingFrameR15"
  618. ScrollingFrameR15.Parent = MainFrame
  619. ScrollingFrameR15.BackgroundColor3 = Color3.new(1, 0.564706, 0.564706)
  620. ScrollingFrameR15.Position = UDim2.new(0, 0, 0, 32)
  621. ScrollingFrameR15.Size = UDim2.new(0, 460, 0, 215)
  622. ScrollingFrameR15.Visible = false
  623. ScrollingFrameR15.ScrollBarThickness = 13
  624.  
  625. CrazySlash.Name = "CrazySlash"
  626. CrazySlash.Parent = ScrollingFrameR15
  627. CrazySlash.BackgroundColor3 = Color3.new(0.682353, 0.701961, 0.792157)
  628. CrazySlash.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)
  629. CrazySlash.Position = UDim2.new(0, 17, 0, 16)
  630. CrazySlash.Size = UDim2.new(0, 119, 0, 34)
  631. CrazySlash.Font = Enum.Font.Highway
  632. CrazySlash.FontSize = Enum.FontSize.Size24
  633. CrazySlash.Text = "CrazySlash"
  634. CrazySlash.TextSize = 20
  635. CrazySlash.TextWrapped = true
  636.  
  637. Open.Name = "Open"
  638. Open.Parent = ScrollingFrameR15
  639. Open.BackgroundColor3 = Color3.new(0.682353, 0.701961, 0.792157)
  640. Open.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)
  641. Open.Position = UDim2.new(0, 168, 0, 16)
  642. Open.Size = UDim2.new(0, 119, 0, 34)
  643. Open.Font = Enum.Font.Highway
  644. Open.FontSize = Enum.FontSize.Size24
  645. Open.Text = "Open"
  646. Open.TextSize = 20
  647. Open.TextWrapped = true
  648.  
  649. R15Spinner.Name = "R15Spinner"
  650. R15Spinner.Parent = ScrollingFrameR15
  651. R15Spinner.BackgroundColor3 = Color3.new(0.682353, 0.701961, 0.792157)
  652. R15Spinner.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)
  653. R15Spinner.Position = UDim2.new(0, 17, 0, 60)
  654. R15Spinner.Size = UDim2.new(0, 119, 0, 34)
  655. R15Spinner.Font = Enum.Font.Highway
  656. R15Spinner.FontSize = Enum.FontSize.Size24
  657. R15Spinner.Text = "Spinner"
  658. R15Spinner.TextSize = 20
  659. R15Spinner.TextWrapped = true
  660.  
  661. ArmsOut.Name = "ArmsOut"
  662. ArmsOut.Parent = ScrollingFrameR15
  663. ArmsOut.BackgroundColor3 = Color3.new(0.682353, 0.701961, 0.792157)
  664. ArmsOut.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)
  665. ArmsOut.Position = UDim2.new(0, 319, 0, 16)
  666. ArmsOut.Size = UDim2.new(0, 119, 0, 34)
  667. ArmsOut.Font = Enum.Font.Highway
  668. ArmsOut.FontSize = Enum.FontSize.Size24
  669. ArmsOut.Text = "ArmsOut"
  670. ArmsOut.TextSize = 20
  671. ArmsOut.TextWrapped = true
  672.  
  673. FloatSlash.Name = "FloatSlash"
  674. FloatSlash.Parent = ScrollingFrameR15
  675. FloatSlash.BackgroundColor3 = Color3.new(0.682353, 0.701961, 0.792157)
  676. FloatSlash.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)
  677. FloatSlash.Position = UDim2.new(0, 168, 0, 148)
  678. FloatSlash.Size = UDim2.new(0, 119, 0, 34)
  679. FloatSlash.Font = Enum.Font.Highway
  680. FloatSlash.FontSize = Enum.FontSize.Size24
  681. FloatSlash.Text = "FloatSlash"
  682. FloatSlash.TextSize = 20
  683. FloatSlash.TextWrapped = true
  684.  
  685. WeirdZombie.Name = "WeirdZombie"
  686. WeirdZombie.Parent = ScrollingFrameR15
  687. WeirdZombie.BackgroundColor3 = Color3.new(0.682353, 0.701961, 0.792157)
  688. WeirdZombie.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)
  689. WeirdZombie.Position = UDim2.new(0, 17, 0, 148)
  690. WeirdZombie.Size = UDim2.new(0, 119, 0, 34)
  691. WeirdZombie.Font = Enum.Font.Highway
  692. WeirdZombie.FontSize = Enum.FontSize.Size24
  693. WeirdZombie.Text = "WeirdZombie"
  694. WeirdZombie.TextSize = 20
  695. WeirdZombie.TextWrapped = true
  696.  
  697. DownSlash.Name = "DownSlash"
  698. DownSlash.Parent = ScrollingFrameR15
  699. DownSlash.BackgroundColor3 = Color3.new(0.682353, 0.701961, 0.792157)
  700. DownSlash.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)
  701. DownSlash.Position = UDim2.new(0, 319, 0, 148)
  702. DownSlash.Size = UDim2.new(0, 119, 0, 34)
  703. DownSlash.Font = Enum.Font.Highway
  704. DownSlash.FontSize = Enum.FontSize.Size24
  705. DownSlash.Text = "DownSlash"
  706. DownSlash.TextSize = 20
  707. DownSlash.TextWrapped = true
  708.  
  709. Pull.Name = "Pull"
  710. Pull.Parent = ScrollingFrameR15
  711. Pull.BackgroundColor3 = Color3.new(0.682353, 0.701961, 0.792157)
  712. Pull.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)
  713. Pull.Position = UDim2.new(0, 17, 0, 104)
  714. Pull.Size = UDim2.new(0, 119, 0, 34)
  715. Pull.Font = Enum.Font.Highway
  716. Pull.FontSize = Enum.FontSize.Size24
  717. Pull.Text = "Pull"
  718. Pull.TextSize = 20
  719. Pull.TextWrapped = true
  720.  
  721. CircleArm.Name = "CircleArm"
  722. CircleArm.Parent = ScrollingFrameR15
  723. CircleArm.BackgroundColor3 = Color3.new(0.682353, 0.701961, 0.792157)
  724. CircleArm.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)
  725. CircleArm.Position = UDim2.new(0, 168, 0, 104)
  726. CircleArm.Size = UDim2.new(0, 119, 0, 34)
  727. CircleArm.Font = Enum.Font.Highway
  728. CircleArm.FontSize = Enum.FontSize.Size24
  729. CircleArm.Text = "CircleArm"
  730. CircleArm.TextSize = 20
  731. CircleArm.TextWrapped = true
  732.  
  733. Bend.Name = "Bend"
  734. Bend.Parent = ScrollingFrameR15
  735. Bend.BackgroundColor3 = Color3.new(0.682353, 0.701961, 0.792157)
  736. Bend.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)
  737. Bend.Position = UDim2.new(0, 319, 0, 104)
  738. Bend.Size = UDim2.new(0, 119, 0, 34)
  739. Bend.Font = Enum.Font.Highway
  740. Bend.FontSize = Enum.FontSize.Size24
  741. Bend.Text = "Bend"
  742. Bend.TextSize = 20
  743. Bend.TextWrapped = true
  744.  
  745. RotateSlash.Name = "RotateSlash"
  746. RotateSlash.Parent = ScrollingFrameR15
  747. RotateSlash.BackgroundColor3 = Color3.new(0.682353, 0.701961, 0.792157)
  748. RotateSlash.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)
  749. RotateSlash.Position = UDim2.new(0, 319, 0, 60)
  750. RotateSlash.Size = UDim2.new(0, 119, 0, 34)
  751. RotateSlash.Font = Enum.Font.Highway
  752. RotateSlash.FontSize = Enum.FontSize.Size24
  753. RotateSlash.Text = "RotateSlash"
  754. RotateSlash.TextSize = 20
  755. RotateSlash.TextWrapped = true
  756.  
  757. FlingArms.Name = "FlingArms"
  758. FlingArms.Parent = ScrollingFrameR15
  759. FlingArms.BackgroundColor3 = Color3.new(0.682353, 0.701961, 0.792157)
  760. FlingArms.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)
  761. FlingArms.Position = UDim2.new(0, 168, 0, 60)
  762. FlingArms.Size = UDim2.new(0, 119, 0, 34)
  763. FlingArms.Font = Enum.Font.Highway
  764. FlingArms.FontSize = Enum.FontSize.Size24
  765. FlingArms.Text = "FlingArms"
  766. FlingArms.TextSize = 20
  767. FlingArms.TextWrapped = true
  768.  
  769. -- Buttons
  770. col = Color3.new(0.886275, 0.776471, 0.368627)
  771. loc = Color3.new(1, 0.906471, 0.568627)
  772. rcol = Color3.new(0.682353, 0.701961, 0.792157)
  773. rloc = Color3.new(0.882353, 0.901961, 0.992157)
  774.  
  775. CloseGUI.MouseButton1Click:connect(function()
  776. MainFrame.Visible = false
  777. SideFrame.Visible = true
  778. SideFrame.Position = MainFrame.Position
  779. end)
  780.  
  781. OpenGUI.MouseButton1Click:connect(function()
  782. MainFrame.Visible = true
  783. SideFrame.Visible = false
  784. MainFrame.Position = SideFrame.Position
  785. end)
  786.  
  787. if (game:GetService"Players".LocalPlayer.Character:WaitForChild("Humanoid").RigType == Enum.HumanoidRigType.R15) then
  788. ScrollingFrame.Visible = false
  789. ScrollingFrameR15.Visible = true
  790. CheckR.Text = "Showing R15 Animations"
  791. else
  792. ScrollingFrame.Visible = true
  793. ScrollingFrameR15.Visible = false
  794. CheckR.Text = "Showing R6 Animations"
  795. end
  796.  
  797. local Anim = Instance.new("Animation")
  798. Anim.AnimationId = "rbxassetid://35154961"
  799. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  800. local HeadThrowACTIVE = false
  801. HeadThrow.MouseButton1Click:connect(function()
  802. HeadThrowACTIVE = not HeadThrowACTIVE
  803. if HeadThrowACTIVE then
  804. HeadThrow.BackgroundColor3 = loc
  805. while wait() do
  806. if track.IsPlaying == false then
  807. if HeadThrowACTIVE then
  808. track:Play(.1, 1, 1)
  809. end
  810. end
  811. end
  812. else
  813. track:Stop()
  814. HeadThrow.BackgroundColor3 = col
  815. end
  816. end)
  817.  
  818. local Anim = Instance.new("Animation")
  819. Anim.AnimationId = "rbxassetid://121572214"
  820. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  821. local FloatingHeadACTIVE = false
  822. FloatingHead.MouseButton1Click:connect(function()
  823. FloatingHeadACTIVE = not FloatingHeadACTIVE
  824. if FloatingHeadACTIVE then
  825. track:Play(.1, 1, 1)
  826. FloatingHead.BackgroundColor3 = loc
  827. else
  828. track:Stop()
  829. FloatingHead.BackgroundColor3 = col
  830. end
  831. end)
  832.  
  833. local Anim = Instance.new("Animation")
  834. Anim.AnimationId = "rbxassetid://182724289"
  835. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  836. local CrouchACTIVE = false
  837. Crouch.MouseButton1Click:connect(function()
  838. CrouchACTIVE = not CrouchACTIVE
  839. if CrouchACTIVE then
  840. track:Play(.1, 1, 1)
  841. Crouch.BackgroundColor3 = loc
  842. else
  843. track:Stop()
  844. Crouch.BackgroundColor3 = col
  845. end
  846. end)
  847.  
  848. local Anim = Instance.new("Animation")
  849. Anim.AnimationId = "rbxassetid://282574440"
  850. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  851. local FloorCrawlACTIVE = false
  852. FloorCrawl.MouseButton1Click:connect(function()
  853. FloorCrawlACTIVE = not FloorCrawlACTIVE
  854. if FloorCrawlACTIVE then
  855. track:Play(.1, 1, 1)
  856. FloorCrawl.BackgroundColor3 = loc
  857. else
  858. track:Stop()
  859. FloorCrawl.BackgroundColor3 = col
  860. end
  861. end)
  862.  
  863. local Anim = Instance.new("Animation")
  864. Anim.AnimationId = "rbxassetid://204328711"
  865. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  866. local DinoWalkACTIVE = false
  867. DinoWalk.MouseButton1Click:connect(function()
  868. DinoWalkACTIVE = not DinoWalkACTIVE
  869. if DinoWalkACTIVE then
  870. track:Play(.1, 1, 1)
  871. DinoWalk.BackgroundColor3 = loc
  872. else
  873. track:Stop()
  874. DinoWalk.BackgroundColor3 = col
  875. end
  876. end)
  877.  
  878. local Anim = Instance.new("Animation")
  879. Anim.AnimationId = "rbxassetid://429681631"
  880. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  881. local JumpingJacksACTIVE = false
  882. JumpingJacks.MouseButton1Click:connect(function()
  883. JumpingJacksACTIVE = not JumpingJacksACTIVE
  884. if JumpingJacksACTIVE then
  885. track:Play(.1, 1, 1)
  886. JumpingJacks.BackgroundColor3 = loc
  887. else
  888. track:Stop()
  889. JumpingJacks.BackgroundColor3 = col
  890. end
  891. end)
  892.  
  893. local Anim = Instance.new("Animation")
  894. Anim.AnimationId = "rbxassetid://35154961"
  895. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  896. local LoopHeadACTIVE = false
  897. LoopHead.MouseButton1Click:connect(function()
  898. LoopHeadACTIVE = not LoopHeadACTIVE
  899. if LoopHeadACTIVE then
  900. LoopHead.BackgroundColor3 = loc
  901. while wait() do
  902. if track.IsPlaying == false then
  903. if LoopHeadACTIVE then
  904. track:Play(.5, 1, 1e6)
  905. end
  906. end
  907. end
  908. else
  909. track:Stop()
  910. LoopHead.BackgroundColor3 = col
  911. end
  912. end)
  913.  
  914. local Anim = Instance.new("Animation")
  915. Anim.AnimationId = "rbxassetid://184574340"
  916. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  917. local HeroJumpACTIVE = false
  918. HeroJump.MouseButton1Click:connect(function()
  919. HeroJumpACTIVE = not HeroJumpACTIVE
  920. if HeroJumpACTIVE then
  921. HeroJump.BackgroundColor3 = loc
  922. while wait() do
  923. if track.IsPlaying == false then
  924. if HeroJumpACTIVE then
  925. track:Play(.1, 1, 1)
  926. end
  927. end
  928. end
  929. else
  930. track:Stop()
  931. HeroJump.BackgroundColor3 = col
  932. end
  933. end)
  934.  
  935. local Anim = Instance.new("Animation")
  936. Anim.AnimationId = "rbxassetid://181526230"
  937. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  938. local FaintACTIVE = false
  939. Faint.MouseButton1Click:connect(function()
  940. FaintACTIVE = not FaintACTIVE
  941. if FaintACTIVE then
  942. track:Play(.1, 1, 1)
  943. Faint.BackgroundColor3 = loc
  944. else
  945. track:Stop()
  946. Faint.BackgroundColor3 = col
  947. end
  948. end)
  949.  
  950. local Anim = Instance.new("Animation")
  951. Anim.AnimationId = "rbxassetid://181525546"
  952. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  953. local FloorFaintACTIVE = false
  954. FloorFaint.MouseButton1Click:connect(function()
  955. FloorFaintACTIVE = not FloorFaintACTIVE
  956. if FloorFaintACTIVE then
  957. FloorFaint.BackgroundColor3 = loc
  958. while wait() do
  959. if track.IsPlaying == false then
  960. if FloorFaintACTIVE then
  961. track:Play(.1, 1, 2)
  962. end
  963. end
  964. end
  965. else
  966. track:Stop()
  967. FloorFaint.BackgroundColor3 = col
  968. end
  969. end)
  970.  
  971. local Anim = Instance.new("Animation")
  972. Anim.AnimationId = "rbxassetid://181525546"
  973. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  974. local SuperFaintACTIVE = false
  975. SuperFaint.MouseButton1Click:connect(function()
  976. SuperFaintACTIVE = not SuperFaintACTIVE
  977. if SuperFaintACTIVE then
  978. SuperFaint.BackgroundColor3 = loc
  979. while wait() do
  980. if track.IsPlaying == false then
  981. if SuperFaintACTIVE then
  982. track:Play(.1, 0.5, 40)
  983. end
  984. end
  985. end
  986. else
  987. track:Stop()
  988. SuperFaint.BackgroundColor3 = col
  989. end
  990. end)
  991.  
  992. local Anim = Instance.new("Animation")
  993. Anim.AnimationId = "rbxassetid://313762630"
  994. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  995. local LevitateACTIVE = false
  996. Levitate.MouseButton1Click:connect(function()
  997. LevitateACTIVE = not LevitateACTIVE
  998. if LevitateACTIVE then
  999. track:Play(.1, 1, 1)
  1000. Levitate.BackgroundColor3 = loc
  1001. else
  1002. track:Stop()
  1003. Levitate.BackgroundColor3 = col
  1004. end
  1005. end)
  1006.  
  1007. local Anim = Instance.new("Animation")
  1008. Anim.AnimationId = "rbxassetid://183412246"
  1009. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  1010. local DabACTIVE = false
  1011. Dab.MouseButton1Click:connect(function()
  1012. DabACTIVE = not DabACTIVE
  1013. if DabACTIVE then
  1014. Dab.BackgroundColor3 = loc
  1015. while wait() do
  1016. if track.IsPlaying == false then
  1017. if DabACTIVE then
  1018. track:Play(.1, 1, 1)
  1019. end
  1020. end
  1021. end
  1022. else
  1023. track:Stop()
  1024. Dab.BackgroundColor3 = col
  1025. end
  1026. end)
  1027.  
  1028. local Anim = Instance.new("Animation")
  1029. Anim.AnimationId = "rbxassetid://188632011"
  1030. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  1031. local SpinACTIVE = false
  1032. Spinner.MouseButton1Click:connect(function()
  1033. SpinACTIVE = not SpinACTIVE
  1034. if SpinACTIVE then
  1035. Spinner.BackgroundColor3 = loc
  1036. while wait() do
  1037. if track.IsPlaying == false then
  1038. if SpinACTIVE then
  1039. track:Play(.1, 1, 2)
  1040. end
  1041. end
  1042. end
  1043. else
  1044. track:Stop()
  1045. Spinner.BackgroundColor3 = col
  1046. end
  1047. end)
  1048.  
  1049. local Anim = Instance.new("Animation")
  1050. Anim.AnimationId = "rbxassetid://179224234"
  1051. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  1052. local FloatSitACTIVE = false
  1053. FloatSit.MouseButton1Click:connect(function()
  1054. FloatSitACTIVE = not FloatSitACTIVE
  1055. if FloatSitACTIVE then
  1056. track:Play(.1, 1, 1)
  1057. FloatSit.BackgroundColor3 = loc
  1058. else
  1059. track:Stop()
  1060. FloatSit.BackgroundColor3 = col
  1061. end
  1062. end)
  1063.  
  1064. local Anim = Instance.new("Animation")
  1065. Anim.AnimationId = "rbxassetid://429703734"
  1066. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  1067. local MovingDanceACTIVE = false
  1068. MovingDance.MouseButton1Click:connect(function()
  1069. MovingDanceACTIVE = not MovingDanceACTIVE
  1070. if MovingDanceACTIVE then
  1071. MovingDance.BackgroundColor3 = loc
  1072. while wait() do
  1073. if track.IsPlaying == false then
  1074. if MovingDanceACTIVE then
  1075. track:Play(.1, 1, 1)
  1076. end
  1077. end
  1078. end
  1079. else
  1080. track:Stop()
  1081. MovingDance.BackgroundColor3 = col
  1082. end
  1083. end)
  1084.  
  1085. local Anim = Instance.new("Animation")
  1086. Anim.AnimationId = "rbxassetid://215384594"
  1087. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  1088. local WeirdMoveACTIVE = false
  1089. WeirdMove.MouseButton1Click:connect(function()
  1090. WeirdMoveACTIVE = not WeirdMoveACTIVE
  1091. if WeirdMoveACTIVE then
  1092. track:Play(.1, 1, 1)
  1093. WeirdMove.BackgroundColor3 = loc
  1094. else
  1095. track:Stop()
  1096. WeirdMove.BackgroundColor3 = col
  1097. end
  1098. end)
  1099.  
  1100. local Anim = Instance.new("Animation")
  1101. Anim.AnimationId = "rbxassetid://215384594"
  1102. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  1103. local CloneIllusionACTIVE = false
  1104. CloneIllusion.MouseButton1Click:connect(function()
  1105. CloneIllusionACTIVE = not CloneIllusionACTIVE
  1106. if CloneIllusionACTIVE then
  1107. track:Play(.5, 1, 1e7)
  1108. CloneIllusion.BackgroundColor3 = loc
  1109. else
  1110. track:Stop()
  1111. CloneIllusion.BackgroundColor3 = col
  1112. end
  1113. end)
  1114.  
  1115. local Anim = Instance.new("Animation")
  1116. Anim.AnimationId = "rbxassetid://313762630"
  1117. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  1118. local GlitchLevitateACTIVE = false
  1119. GlitchLevitate.MouseButton1Click:connect(function()
  1120. GlitchLevitateACTIVE = not GlitchLevitateACTIVE
  1121. if GlitchLevitateACTIVE then
  1122. track:Play(.5, 1, 1e7)
  1123. GlitchLevitate.BackgroundColor3 = loc
  1124. else
  1125. track:Stop()
  1126. GlitchLevitate.BackgroundColor3 = col
  1127. end
  1128. end)
  1129.  
  1130. local Anim = Instance.new("Animation")
  1131. Anim.AnimationId = "rbxassetid://429730430"
  1132. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  1133. local SpinDanceACTIVE = false
  1134. SpinDance.MouseButton1Click:connect(function()
  1135. SpinDanceACTIVE = not SpinDanceACTIVE
  1136. if SpinDanceACTIVE then
  1137. SpinDance.BackgroundColor3 = loc
  1138. while wait() do
  1139. if track.IsPlaying == false then
  1140. if SpinDanceACTIVE then
  1141. track:Play(.1, 1, 1)
  1142. end
  1143. end
  1144. end
  1145. else
  1146. track:Stop()
  1147. SpinDance.BackgroundColor3 = col
  1148. end
  1149. end)
  1150.  
  1151. local Anim = Instance.new("Animation")
  1152. Anim.AnimationId = "rbxassetid://45834924"
  1153. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  1154. local MoonDanceACTIVE = false
  1155. MoonDance.MouseButton1Click:connect(function()
  1156. MoonDanceACTIVE = not MoonDanceACTIVE
  1157. if MoonDanceACTIVE then
  1158. MoonDance.BackgroundColor3 = loc
  1159. while wait() do
  1160. if track.IsPlaying == false then
  1161. if MoonDanceACTIVE then
  1162. track:Play(.1, 1, 1)
  1163. end
  1164. end
  1165. end
  1166. else
  1167. track:Stop()
  1168. MoonDance.BackgroundColor3 = col
  1169. end
  1170. end)
  1171.  
  1172. local Anim = Instance.new("Animation")
  1173. Anim.AnimationId = "rbxassetid://204062532"
  1174. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  1175. local FullPunchACTIVE = false
  1176. FullPunch.MouseButton1Click:connect(function()
  1177. FullPunchACTIVE = not FullPunchACTIVE
  1178. if FullPunchACTIVE then
  1179. FullPunch.BackgroundColor3 = loc
  1180. while wait() do
  1181. if track.IsPlaying == false then
  1182. if FullPunchACTIVE then
  1183. track:Play(.1, 1, 1)
  1184. end
  1185. end
  1186. end
  1187. else
  1188. track:Stop()
  1189. FullPunch.BackgroundColor3 = col
  1190. end
  1191. end)
  1192.  
  1193. local Anim = Instance.new("Animation")
  1194. Anim.AnimationId = "rbxassetid://186934910"
  1195. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  1196. local SpinDance2ACTIVE = false
  1197. SpinDance2.MouseButton1Click:connect(function()
  1198. SpinDance2ACTIVE = not SpinDance2ACTIVE
  1199. if SpinDance2ACTIVE then
  1200. SpinDance2.BackgroundColor3 = loc
  1201. while wait() do
  1202. if track.IsPlaying == false then
  1203. if SpinDance2ACTIVE then
  1204. track:Play(.1, 1, 1)
  1205. end
  1206. end
  1207. end
  1208. else
  1209. track:Stop()
  1210. SpinDance2.BackgroundColor3 = col
  1211. end
  1212. end)
  1213.  
  1214. local Anim = Instance.new("Animation")
  1215. Anim.AnimationId = "rbxassetid://204292303"
  1216. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  1217. local BowDownACTIVE = false
  1218. BowDown.MouseButton1Click:connect(function()
  1219. BowDownACTIVE = not BowDownACTIVE
  1220. if BowDownACTIVE then
  1221. BowDown.BackgroundColor3 = loc
  1222. while wait() do
  1223. if track.IsPlaying == false then
  1224. if BowDownACTIVE then
  1225. track:Play(.1, 1, 3)
  1226. end
  1227. end
  1228. end
  1229. else
  1230. track:Stop()
  1231. BowDown.BackgroundColor3 = col
  1232. end
  1233. end)
  1234.  
  1235. local Anim = Instance.new("Animation")
  1236. Anim.AnimationId = "rbxassetid://204295235"
  1237. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  1238. local SwordSlamACTIVE = false
  1239. SwordSlam.MouseButton1Click:connect(function()
  1240. SwordSlamACTIVE = not SwordSlamACTIVE
  1241. if SwordSlamACTIVE then
  1242. SwordSlam.BackgroundColor3 = loc
  1243. while wait() do
  1244. if track.IsPlaying == false then
  1245. if SwordSlamACTIVE then
  1246. track:Play(.1, 1, 1)
  1247. end
  1248. end
  1249. end
  1250. else
  1251. track:Stop()
  1252. SwordSlam.BackgroundColor3 = col
  1253. end
  1254. end)
  1255.  
  1256. local Anim = Instance.new("Animation")
  1257. Anim.AnimationId = "rbxassetid://204295235"
  1258. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  1259. local LoopSlamACTIVE = false
  1260. LoopSlam.MouseButton1Click:connect(function()
  1261. LoopSlamACTIVE = not LoopSlamACTIVE
  1262. if LoopSlamACTIVE then
  1263. LoopSlam.BackgroundColor3 = loc
  1264. while wait() do
  1265. if track.IsPlaying == false then
  1266. if LoopSlamACTIVE then
  1267. track:Play(.1, 1, 1e4)
  1268. end
  1269. end
  1270. end
  1271. else
  1272. track:Stop()
  1273. LoopSlam.BackgroundColor3 = col
  1274. end
  1275. end)
  1276.  
  1277. local Anim = Instance.new("Animation")
  1278. Anim.AnimationId = "rbxassetid://184574340"
  1279. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  1280. local MegaInsaneACTIVE = false
  1281. MegaInsane.MouseButton1Click:connect(function()
  1282. MegaInsaneACTIVE = not MegaInsaneACTIVE
  1283. if MegaInsaneACTIVE then
  1284. MegaInsane.BackgroundColor3 = loc
  1285. while wait() do
  1286. if track.IsPlaying == false then
  1287. if MegaInsaneACTIVE then
  1288. track:Play(.1, 0.5, 40)
  1289. end
  1290. end
  1291. end
  1292. else
  1293. track:Stop()
  1294. MegaInsane.BackgroundColor3 = col
  1295. end
  1296. end)
  1297.  
  1298. local Anim = Instance.new("Animation")
  1299. Anim.AnimationId = "rbxassetid://126753849"
  1300. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  1301. local SuperPunchACTIVE = false
  1302. SuperPunch.MouseButton1Click:connect(function()
  1303. SuperPunchACTIVE = not SuperPunchACTIVE
  1304. if SuperPunchACTIVE then
  1305. SuperPunch.BackgroundColor3 = loc
  1306. while wait() do
  1307. if track.IsPlaying == false then
  1308. if SuperPunchACTIVE then
  1309. track:Play(.1, 1, 3)
  1310. end
  1311. end
  1312. end
  1313. else
  1314. track:Stop()
  1315. SuperPunch.BackgroundColor3 = col
  1316. end
  1317. end)
  1318.  
  1319. local Anim = Instance.new("Animation")
  1320. Anim.AnimationId = "rbxassetid://218504594"
  1321. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  1322. local FullSwingACTIVE = false
  1323. FullSwing.MouseButton1Click:connect(function()
  1324. FullSwingACTIVE = not FullSwingACTIVE
  1325. if FullSwingACTIVE then
  1326. FullSwing.BackgroundColor3 = loc
  1327. while wait() do
  1328. if track.IsPlaying == false then
  1329. if FullSwingACTIVE then
  1330. track:Play(.1, 1, 1)
  1331. end
  1332. end
  1333. end
  1334. else
  1335. track:Stop()
  1336. FullSwing.BackgroundColor3 = col
  1337. end
  1338. end)
  1339.  
  1340. local Anim = Instance.new("Animation")
  1341. Anim.AnimationId = "rbxassetid://259438880"
  1342. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  1343. local ArmTurbineACTIVE = false
  1344. ArmTurbine.MouseButton1Click:connect(function()
  1345. ArmTurbineACTIVE = not ArmTurbineACTIVE
  1346. if ArmTurbineACTIVE then
  1347. track:Play(.1, 1, 1e3)
  1348. ArmTurbine.BackgroundColor3 = loc
  1349. else
  1350. track:Stop()
  1351. ArmTurbine.BackgroundColor3 = col
  1352. end
  1353. end)
  1354.  
  1355. local Anim = Instance.new("Animation")
  1356. Anim.AnimationId = "rbxassetid://136801964"
  1357. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  1358. local BarrelRollACTIVE = false
  1359. BarrelRoll.MouseButton1Click:connect(function()
  1360. BarrelRollACTIVE = not BarrelRollACTIVE
  1361. if BarrelRollACTIVE then
  1362. BarrelRoll.BackgroundColor3 = loc
  1363. while wait() do
  1364. if track.IsPlaying == false then
  1365. if BarrelRollACTIVE then
  1366. track:Play(.1, 1, 1)
  1367. end
  1368. end
  1369. end
  1370. else
  1371. track:Stop()
  1372. BarrelRoll.BackgroundColor3 = col
  1373. end
  1374. end)
  1375.  
  1376. local Anim = Instance.new("Animation")
  1377. Anim.AnimationId = "rbxassetid://180612465"
  1378. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  1379. local ScaredACTIVE = false
  1380. Scared.MouseButton1Click:connect(function()
  1381. ScaredACTIVE = not ScaredACTIVE
  1382. if ScaredACTIVE then
  1383. Scared.BackgroundColor3 = loc
  1384. while wait() do
  1385. if track.IsPlaying == false then
  1386. if ScaredACTIVE then
  1387. track:Play(.1, 1, 1)
  1388. end
  1389. end
  1390. end
  1391. else
  1392. track:Stop()
  1393. Scared.BackgroundColor3 = col
  1394. end
  1395. end)
  1396.  
  1397. local Anim = Instance.new("Animation")
  1398. Anim.AnimationId = "rbxassetid://33796059"
  1399. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  1400. local InsaneACTIVE = false
  1401. Insane.MouseButton1Click:connect(function()
  1402. InsaneACTIVE = not InsaneACTIVE
  1403. if InsaneACTIVE then
  1404. track:Play(.1, 1, 1e8)
  1405. Insane.BackgroundColor3 = loc
  1406. else
  1407. track:Stop()
  1408. Insane.BackgroundColor3 = col
  1409. end
  1410. end)
  1411.  
  1412. local Anim = Instance.new("Animation")
  1413. Anim.AnimationId = "rbxassetid://33169583"
  1414. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  1415. local ArmDetachACTIVE = false
  1416. ArmDetach.MouseButton1Click:connect(function()
  1417. ArmDetachACTIVE = not ArmDetachACTIVE
  1418. if ArmDetachACTIVE then
  1419. ArmDetach.BackgroundColor3 = loc
  1420. while wait() do
  1421. if track.IsPlaying == false then
  1422. if ArmDetachACTIVE then
  1423. track:Play(.1, 1, 1e6)
  1424. end
  1425. end
  1426. end
  1427. else
  1428. track:Stop()
  1429. ArmDetach.BackgroundColor3 = col
  1430. end
  1431. end)
  1432.  
  1433. local Anim = Instance.new("Animation")
  1434. Anim.AnimationId = "rbxassetid://35978879"
  1435. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  1436. local SwordSliceACTIVE = false
  1437. SwordSlice.MouseButton1Click:connect(function()
  1438. SwordSliceACTIVE = not SwordSliceACTIVE
  1439. if SwordSliceACTIVE then
  1440. track:Play(.1, 1, 1)
  1441. SwordSlice.BackgroundColor3 = loc
  1442. else
  1443. track:Stop()
  1444. SwordSlice.BackgroundColor3 = col
  1445. end
  1446. end)
  1447.  
  1448. local Anim = Instance.new("Animation")
  1449. Anim.AnimationId = "rbxassetid://27432691"
  1450. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  1451. local InsaneArmsACTIVE = false
  1452. InsaneArms.MouseButton1Click:connect(function()
  1453. InsaneArmsACTIVE = not InsaneArmsACTIVE
  1454. if InsaneArmsACTIVE then
  1455. InsaneArms.BackgroundColor3 = loc
  1456. while wait() do
  1457. if track.IsPlaying == false then
  1458. if InsaneArmsACTIVE then
  1459. track:Play(.1, 1, 1e4)
  1460. end
  1461. end
  1462. end
  1463. else
  1464. track:Stop()
  1465. InsaneArms.BackgroundColor3 = col
  1466. end
  1467. end)
  1468. -- R15
  1469. local Anim = Instance.new("Animation")
  1470. Anim.AnimationId = "rbxassetid://674871189"
  1471. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  1472. local CrazySlashACTIVE = false
  1473. CrazySlash.MouseButton1Click:connect(function()
  1474. CrazySlashACTIVE = not CrazySlashACTIVE
  1475. if CrazySlashACTIVE then
  1476. CrazySlash.BackgroundColor3 = rloc
  1477. while wait() do
  1478. if track.IsPlaying == false then
  1479. if CrazySlashACTIVE then
  1480. track:Play(.1, 1, 1)
  1481. end
  1482. end
  1483. end
  1484. else
  1485. track:Stop()
  1486. CrazySlash.BackgroundColor3 = rcol
  1487. end
  1488. end)
  1489.  
  1490. local Anim = Instance.new("Animation")
  1491. Anim.AnimationId = "rbxassetid://582855105"
  1492. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  1493. local OpenACTIVE = false
  1494. Open.MouseButton1Click:connect(function()
  1495. OpenACTIVE = not OpenACTIVE
  1496. if OpenACTIVE then
  1497. Open.BackgroundColor3 = rloc
  1498. while wait() do
  1499. if track.IsPlaying == false then
  1500. if OpenACTIVE then
  1501. track:Play(.1, 1, 1)
  1502. end
  1503. end
  1504. end
  1505. else
  1506. track:Stop()
  1507. Open.BackgroundColor3 = rcol
  1508. end
  1509. end)
  1510.  
  1511. local Anim = Instance.new("Animation")
  1512. Anim.AnimationId = "rbxassetid://754658275"
  1513. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  1514. local R15SpinnerACTIVE = false
  1515. R15Spinner.MouseButton1Click:connect(function()
  1516. R15SpinnerACTIVE = not R15SpinnerACTIVE
  1517. if R15SpinnerACTIVE then
  1518. R15Spinner.BackgroundColor3 = rloc
  1519. while wait() do
  1520. if track.IsPlaying == false then
  1521. if R15SpinnerACTIVE then
  1522. track:Play(.1, 1, 1)
  1523. end
  1524. end
  1525. end
  1526. else
  1527. track:Stop()
  1528. R15Spinner.BackgroundColor3 = rcol
  1529. end
  1530. end)
  1531.  
  1532. local Anim = Instance.new("Animation")
  1533. Anim.AnimationId = "rbxassetid://582384156"
  1534. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  1535. local ArmsOutACTIVE = false
  1536. ArmsOut.MouseButton1Click:connect(function()
  1537. ArmsOutACTIVE = not ArmsOutACTIVE
  1538. if ArmsOutACTIVE then
  1539. ArmsOut.BackgroundColor3 = rloc
  1540. while wait() do
  1541. if track.IsPlaying == false then
  1542. if ArmsOutACTIVE then
  1543. track:Play(.1, 1, 1)
  1544. end
  1545. end
  1546. end
  1547. else
  1548. track:Stop()
  1549. ArmsOut.BackgroundColor3 = rcol
  1550. end
  1551. end)
  1552.  
  1553. local Anim = Instance.new("Animation")
  1554. Anim.AnimationId = "rbxassetid://717879555"
  1555. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  1556. local FloatSlashACTIVE = false
  1557. FloatSlash.MouseButton1Click:connect(function()
  1558. FloatSlashACTIVE = not FloatSlashACTIVE
  1559. if FloatSlashACTIVE then
  1560. FloatSlash.BackgroundColor3 = rloc
  1561. while wait() do
  1562. if track.IsPlaying == false then
  1563. if FloatSlashACTIVE then
  1564. track:Play(.1, 1, 1)
  1565. end
  1566. end
  1567. end
  1568. else
  1569. track:Stop()
  1570. FloatSlash.BackgroundColor3 = rcol
  1571. end
  1572. end)
  1573.  
  1574. local Anim = Instance.new("Animation")
  1575. Anim.AnimationId = "rbxassetid://708553116"
  1576. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  1577. WeirdZombieACTIVE = false
  1578. WeirdZombie.MouseButton1Click:connect(function()
  1579. WeirdZombieACTIVE = not WeirdZombieACTIVE
  1580. if WeirdZombieACTIVE then
  1581. WeirdZombie.BackgroundColor3 = rloc
  1582. while wait() do
  1583. if track.IsPlaying == false then
  1584. if WeirdZombieACTIVE then
  1585. track:Play(.1, 1, 1)
  1586. end
  1587. end
  1588. end
  1589. else
  1590. track:Stop()
  1591. WeirdZombie.BackgroundColor3 = rcol
  1592. end
  1593. end)
  1594.  
  1595. local Anim = Instance.new("Animation")
  1596. Anim.AnimationId = "rbxassetid://746398327"
  1597. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  1598. DownSlashACTIVE = false
  1599. DownSlash.MouseButton1Click:connect(function()
  1600. DownSlashACTIVE = not DownSlashACTIVE
  1601. if DownSlashACTIVE then
  1602. DownSlash.BackgroundColor3 = rloc
  1603. while wait() do
  1604. if track.IsPlaying == false then
  1605. if DownSlashACTIVE then
  1606. track:Play(.1, 1, 1)
  1607. end
  1608. end
  1609. end
  1610. else
  1611. track:Stop()
  1612. DownSlash.BackgroundColor3 = rcol
  1613. end
  1614. end)
  1615.  
  1616. local Anim = Instance.new("Animation")
  1617. Anim.AnimationId = "rbxassetid://675025795"
  1618. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  1619. PullACTIVE = false
  1620. Pull.MouseButton1Click:connect(function()
  1621. PullACTIVE = not PullACTIVE
  1622. if PullACTIVE then
  1623. Pull.BackgroundColor3 = rloc
  1624. while wait() do
  1625. if track.IsPlaying == false then
  1626. if PullACTIVE then
  1627. track:Play(.1, 1, 1)
  1628. end
  1629. end
  1630. end
  1631. else
  1632. track:Stop()
  1633. Pull.BackgroundColor3 = rcol
  1634. end
  1635. end)
  1636.  
  1637. local Anim = Instance.new("Animation")
  1638. Anim.AnimationId = "rbxassetid://698251653"
  1639. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  1640. CircleArmACTIVE = false
  1641. CircleArm.MouseButton1Click:connect(function()
  1642. CircleArmACTIVE = not CircleArmACTIVE
  1643. if CircleArmACTIVE then
  1644. CircleArm.BackgroundColor3 = rloc
  1645. while wait() do
  1646. if track.IsPlaying == false then
  1647. if CircleArmACTIVE then
  1648. track:Play(.1, 1, 1)
  1649. end
  1650. end
  1651. end
  1652. else
  1653. track:Stop()
  1654. CircleArm.BackgroundColor3 = rcol
  1655. end
  1656. end)
  1657.  
  1658. local Anim = Instance.new("Animation")
  1659. Anim.AnimationId = "rbxassetid://696096087"
  1660. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  1661. BendACTIVE = false
  1662. Bend.MouseButton1Click:connect(function()
  1663. BendACTIVE = not BendACTIVE
  1664. if BendACTIVE then
  1665. Bend.BackgroundColor3 = rloc
  1666. while wait() do
  1667. if track.IsPlaying == false then
  1668. if BendACTIVE then
  1669. track:Play(.1, 1, 1)
  1670. end
  1671. end
  1672. end
  1673. else
  1674. track:Stop()
  1675. Bend.BackgroundColor3 = rcol
  1676. end
  1677. end)
  1678.  
  1679. local Anim = Instance.new("Animation")
  1680. Anim.AnimationId = "rbxassetid://675025570"
  1681. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  1682. RotateSlashACTIVE = false
  1683. RotateSlash.MouseButton1Click:connect(function()
  1684. RotateSlashACTIVE = not RotateSlashACTIVE
  1685. if RotateSlashACTIVE then
  1686. RotateSlash.BackgroundColor3 = rloc
  1687. while wait() do
  1688. if track.IsPlaying == false then
  1689. if RotateSlashACTIVE then
  1690. track:Play(.1, 1, 1)
  1691. end
  1692. end
  1693. end
  1694. else
  1695. track:Stop()
  1696. RotateSlash.BackgroundColor3 = rcol
  1697. end
  1698. end)
  1699.  
  1700. local Anim = Instance.new("Animation")
  1701. Anim.AnimationId = "rbxassetid://754656200"
  1702. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  1703. FlingArmsACTIVE = false
  1704. FlingArms.MouseButton1Click:connect(function()
  1705. FlingArmsACTIVE = not FlingArmsACTIVE
  1706. if FlingArmsACTIVE then
  1707. FlingArms.BackgroundColor3 = rloc
  1708. while wait() do
  1709. if track.IsPlaying == false then
  1710. if FlingArmsACTIVE then
  1711. track:Play(.1, 1, 10)
  1712. end
  1713. end
  1714. end
  1715. else
  1716. track:Stop()
  1717. FlingArms.BackgroundColor3 = rcol
  1718. end
  1719. end)
  1720.  
  1721. -- Finished update!
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement