oatmeal2009

R6 animations

May 19th, 2020
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 39.43 KB | None | 0 0
  1. -- Energize by illremember, fe animations
  2.  
  3. -- Objects
  4.  
  5. local Energize = Instance.new("ScreenGui") -- The actual GUI
  6. local SideFrame = Instance.new("Frame") -- Visible when GUI is closed
  7. local OpenGUI = Instance.new("TextButton") -- Part of SideFrame
  8. local SideFrameTitle = Instance.new("TextLabel") -- Part of SideFrame
  9. local MainFrame = Instance.new("Frame") -- All of the stuff on the main frame
  10. local GuiBottomFrame = Instance.new("Frame") -- Part of Active Frame
  11. local Credits = Instance.new("TextLabel") -- Credits to illremember, hello there
  12. local ScrollingFrame = Instance.new("ScrollingFrame") -- The scrolling frame of animations
  13.  
  14. local FullSwing = Instance.new("TextButton")--COMPLETE
  15. local GlitchLevitate = Instance.new("TextButton")--COMPLETE
  16. local MoonDance = Instance.new("TextButton")--COMPLETE
  17. local FullPunch = Instance.new("TextButton")--COMPLETE
  18. local Crouch = Instance.new("TextButton")--COMPLETE
  19. local SpinDance = Instance.new("TextButton")--COMPLETE
  20. local FloorFaint = Instance.new("TextButton")--COMPLETE
  21. local JumpingJacks = Instance.new("TextButton")--COMPLETE
  22. local Spinner = Instance.new("TextButton")--COMPLETE
  23. local MegaInsane = Instance.new("TextButton")--COMPLETE
  24. local ArmDetach = Instance.new("TextButton")--COMPLETE
  25. local WeirdMove = Instance.new("TextButton")--COMPLETE
  26. local Faint = Instance.new("TextButton")--COMPLETE
  27. local CloneIllusion = Instance.new("TextButton")--COMPLETE
  28. local Levitate = Instance.new("TextButton")--COMPLETE
  29. local DinoWalk = Instance.new("TextButton")--COMPLETE
  30. local FloorCrawl = Instance.new("TextButton")--COMPLETE
  31. local SwordSlam = Instance.new("TextButton")--COMPLETE
  32. local LoopHead = Instance.new("TextButton")--COMPLETE
  33. local HeroJump = Instance.new("TextButton")--COMPLETE
  34. local Insane = Instance.new("TextButton")--COMPLETE
  35. local FloatingHead = Instance.new("TextButton")--COMPLETE
  36. local HeadThrow = Instance.new("TextButton")--COMPLETE
  37. local MovingDance = Instance.new("TextButton")--COMPLETE
  38. local SuperPunch = Instance.new("TextButton")--COMPLETE
  39. local ArmTurbine = Instance.new("TextButton")--COMPLETE
  40. local Dab = Instance.new("TextButton")--COMPLETE
  41. local FloatSit = Instance.new("TextButton")--COMPLETE
  42. local SuperFaint = Instance.new("TextButton")--COMPLETE
  43. local BarrelRoll = Instance.new("TextButton")--COMPLETE
  44. local Scared = Instance.new("TextButton")--COMPLETE
  45. local InsaneArms = Instance.new("TextButton")--COMPLETE
  46. local SwordSlice = Instance.new("TextButton")--COMPLETE
  47. local SpinDance2 = Instance.new("TextButton")--COMPLETE
  48. local BowDown = Instance.new("TextButton")--COMPLETE
  49. local LoopSlam = Instance.new("TextButton")--COMPLETE
  50.  
  51. local GuiTopFrame = Instance.new("Frame") -- Top of the main frame
  52. local CloseGUI = Instance.new("TextButton") -- To close the GUI
  53. local Title = Instance.new("TextLabel") -- Actual title of GUI, Energize
  54.  
  55. -- Properties
  56.  
  57. Energize.Name = "Energize"
  58. Energize.Parent = game.Players.LocalPlayer.PlayerGui
  59.  
  60. SideFrame.Name = "SideFrame"
  61. SideFrame.Parent = Energize
  62. SideFrame.Active = true
  63. SideFrame.BackgroundColor3 = Color3.new(1, 0.329412, 0.329412)
  64. SideFrame.Draggable = true
  65. SideFrame.Position = UDim2.new(0, 376, 0, 125)
  66. SideFrame.Size = UDim2.new(0, 460, 0, 32)
  67. SideFrame.Visible = false
  68.  
  69. OpenGUI.Name = "OpenGUI"
  70. OpenGUI.Parent = SideFrame
  71. OpenGUI.BackgroundColor3 = Color3.new(1, 1, 1)
  72. OpenGUI.BackgroundTransparency = 1
  73. OpenGUI.Position = UDim2.new(0, 426, 0, 0)
  74. OpenGUI.Size = UDim2.new(0, 34, 0, 32)
  75. OpenGUI.Font = Enum.Font.SourceSans
  76. OpenGUI.FontSize = Enum.FontSize.Size48
  77. OpenGUI.Text = "X"
  78. OpenGUI.TextColor3 = Color3.new(0.333333, 0, 0)
  79. OpenGUI.TextSize = 40
  80. OpenGUI.TextWrapped = true
  81.  
  82. SideFrameTitle.Name = "SideFrameTitle"
  83. SideFrameTitle.Parent = SideFrame
  84. SideFrameTitle.BackgroundColor3 = Color3.new(1, 1, 1)
  85. SideFrameTitle.BackgroundTransparency = 1
  86. SideFrameTitle.Position = UDim2.new(0, 170, 0, 0)
  87. SideFrameTitle.Size = UDim2.new(0, 119, 0, 31)
  88. SideFrameTitle.Font = Enum.Font.Arial
  89. SideFrameTitle.FontSize = Enum.FontSize.Size24
  90. SideFrameTitle.Text = "│Energize│"
  91. SideFrameTitle.TextSize = 21
  92. SideFrameTitle.TextStrokeColor3 = Color3.new(0.27451, 0.92549, 0.905882)
  93. SideFrameTitle.TextStrokeTransparency = 0.69999998807907
  94.  
  95. MainFrame.Name = "MainFrame"
  96. MainFrame.Parent = Energize
  97. MainFrame.Active = true
  98. MainFrame.BackgroundColor3 = Color3.new(1, 1, 1)
  99. MainFrame.BackgroundTransparency = 1
  100. MainFrame.Draggable = true
  101. MainFrame.Position = UDim2.new(0, 376, 0, 125)
  102. MainFrame.Size = UDim2.new(0, 444, 0, 280)
  103.  
  104. GuiBottomFrame.Name = "Gui BottomFrame"
  105. GuiBottomFrame.Parent = MainFrame
  106. GuiBottomFrame.BackgroundColor3 = Color3.new(1, 0.329412, 0.329412)
  107. GuiBottomFrame.BorderColor3 = Color3.new(0.243137, 0.243137, 0.243137)
  108. GuiBottomFrame.Position = UDim2.new(0, 0, 0, 247)
  109. GuiBottomFrame.Size = UDim2.new(0, 460, 0, 32)
  110.  
  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.  
  124. ScrollingFrame.Parent = MainFrame
  125. ScrollingFrame.BackgroundColor3 = Color3.new(1, 0.564706, 0.564706)
  126. ScrollingFrame.Position = UDim2.new(0, 0, 0, 32)
  127. ScrollingFrame.Size = UDim2.new(0, 460, 0, 215)
  128. ScrollingFrame.ScrollBarThickness = 13
  129.  
  130. FullSwing.Name = "FullSwing"
  131. FullSwing.Parent = ScrollingFrame
  132. FullSwing.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627)
  133. FullSwing.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)
  134. FullSwing.Position = UDim2.new(0, 17, 0, 322)
  135. FullSwing.Size = UDim2.new(0, 119, 0, 34)
  136. FullSwing.Font = Enum.Font.Highway
  137. FullSwing.FontSize = Enum.FontSize.Size24
  138. FullSwing.Text = "Full Swing"
  139. FullSwing.TextSize = 20
  140. FullSwing.TextWrapped = true
  141.  
  142. GlitchLevitate.Name = "GlitchLevitate"
  143. GlitchLevitate.Parent = ScrollingFrame
  144. GlitchLevitate.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627)
  145. GlitchLevitate.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)
  146. GlitchLevitate.Position = UDim2.new(0, 319, 0, 322)
  147. GlitchLevitate.Size = UDim2.new(0, 119, 0, 34)
  148. GlitchLevitate.Font = Enum.Font.Highway
  149. GlitchLevitate.FontSize = Enum.FontSize.Size24
  150. GlitchLevitate.Text = "Glitch Levitate"
  151. GlitchLevitate.TextSize = 20
  152. GlitchLevitate.TextWrapped = true
  153.  
  154. MoonDance.Name = "MoonDance"
  155. MoonDance.Parent = ScrollingFrame
  156. MoonDance.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627)
  157. MoonDance.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)
  158. MoonDance.Position = UDim2.new(0, 319, 0, 280)
  159. MoonDance.Size = UDim2.new(0, 119, 0, 34)
  160. MoonDance.Font = Enum.Font.Highway
  161. MoonDance.FontSize = Enum.FontSize.Size24
  162. MoonDance.Text = "Moon Dance"
  163. MoonDance.TextSize = 20
  164. MoonDance.TextWrapped = true
  165.  
  166. FullPunch.Name = "FullPunch"
  167. FullPunch.Parent = ScrollingFrame
  168. FullPunch.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627)
  169. FullPunch.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)
  170. FullPunch.Position = UDim2.new(0, 17, 0, 280)
  171. FullPunch.Size = UDim2.new(0, 119, 0, 34)
  172. FullPunch.Font = Enum.Font.Highway
  173. FullPunch.FontSize = Enum.FontSize.Size24
  174. FullPunch.Text = "Full Punch"
  175. FullPunch.TextSize = 20
  176. FullPunch.TextWrapped = true
  177.  
  178. Crouch.Name = "Crouch"
  179. Crouch.Parent = ScrollingFrame
  180. Crouch.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627)
  181. Crouch.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)
  182. Crouch.Position = UDim2.new(0, 168, 0, 280)
  183. Crouch.Size = UDim2.new(0, 119, 0, 34)
  184. Crouch.Font = Enum.Font.Highway
  185. Crouch.FontSize = Enum.FontSize.Size24
  186. Crouch.Text = "Crouch"
  187. Crouch.TextSize = 20
  188. Crouch.TextWrapped = true
  189.  
  190. SpinDance.Name = "SpinDance"
  191. SpinDance.Parent = ScrollingFrame
  192. SpinDance.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627)
  193. SpinDance.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)
  194. SpinDance.Position = UDim2.new(0, 168, 0, 236)
  195. SpinDance.Size = UDim2.new(0, 119, 0, 34)
  196. SpinDance.Font = Enum.Font.Highway
  197. SpinDance.FontSize = Enum.FontSize.Size24
  198. SpinDance.Text = "Spin Dance"
  199. SpinDance.TextSize = 20
  200. SpinDance.TextWrapped = true
  201.  
  202. FloorFaint.Name = "FloorFaint"
  203. FloorFaint.Parent = ScrollingFrame
  204. FloorFaint.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627)
  205. FloorFaint.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)
  206. FloorFaint.Position = UDim2.new(0, 17, 0, 236)
  207. FloorFaint.Size = UDim2.new(0, 119, 0, 34)
  208. FloorFaint.Font = Enum.Font.Highway
  209. FloorFaint.FontSize = Enum.FontSize.Size24
  210. FloorFaint.Text = "Floor Faint"
  211. FloorFaint.TextSize = 20
  212. FloorFaint.TextWrapped = true
  213.  
  214. JumpingJacks.Name = "JumpingJacks"
  215. JumpingJacks.Parent = ScrollingFrame
  216. JumpingJacks.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627)
  217. JumpingJacks.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)
  218. JumpingJacks.Position = UDim2.new(0, 319, 0, 236)
  219. JumpingJacks.Size = UDim2.new(0, 119, 0, 34)
  220. JumpingJacks.Font = Enum.Font.Highway
  221. JumpingJacks.FontSize = Enum.FontSize.Size24
  222. JumpingJacks.Text = "Jumping Jacks"
  223. JumpingJacks.TextSize = 20
  224. JumpingJacks.TextWrapped = true
  225.  
  226. Spinner.Name = "Spinner"
  227. Spinner.Parent = ScrollingFrame
  228. Spinner.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627)
  229. Spinner.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)
  230. Spinner.Position = UDim2.new(0, 17, 0, 192)
  231. Spinner.Size = UDim2.new(0, 119, 0, 34)
  232. Spinner.Font = Enum.Font.Highway
  233. Spinner.FontSize = Enum.FontSize.Size24
  234. Spinner.Text = "Spinner"
  235. Spinner.TextSize = 20
  236. Spinner.TextWrapped = true
  237.  
  238. MegaInsane.Name = "MegaInsane"
  239. MegaInsane.Parent = ScrollingFrame
  240. MegaInsane.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627)
  241. MegaInsane.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)
  242. MegaInsane.Position = UDim2.new(0, 168, 0, 192)
  243. MegaInsane.Size = UDim2.new(0, 119, 0, 34)
  244. MegaInsane.Font = Enum.Font.Highway
  245. MegaInsane.FontSize = Enum.FontSize.Size24
  246. MegaInsane.Text = "Mega Insane"
  247. MegaInsane.TextSize = 20
  248. MegaInsane.TextWrapped = true
  249.  
  250. ArmDetach.Name = "ArmDetach"
  251. ArmDetach.Parent = ScrollingFrame
  252. ArmDetach.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627)
  253. ArmDetach.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)
  254. ArmDetach.Position = UDim2.new(0, 319, 0, 192)
  255. ArmDetach.Size = UDim2.new(0, 119, 0, 34)
  256. ArmDetach.Font = Enum.Font.Highway
  257. ArmDetach.FontSize = Enum.FontSize.Size24
  258. ArmDetach.Text = "Arm Detach"
  259. ArmDetach.TextSize = 20
  260. ArmDetach.TextWrapped = true
  261.  
  262. WeirdMove.Name = "WeirdMove"
  263. WeirdMove.Parent = ScrollingFrame
  264. WeirdMove.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627)
  265. WeirdMove.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)
  266. WeirdMove.Position = UDim2.new(0, 168, 0, 148)
  267. WeirdMove.Size = UDim2.new(0, 119, 0, 34)
  268. WeirdMove.Font = Enum.Font.Highway
  269. WeirdMove.FontSize = Enum.FontSize.Size24
  270. WeirdMove.Text = "Weird Move"
  271. WeirdMove.TextSize = 20
  272. WeirdMove.TextWrapped = true
  273.  
  274. Faint.Name = "Faint"
  275. Faint.Parent = ScrollingFrame
  276. Faint.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627)
  277. Faint.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)
  278. Faint.Position = UDim2.new(0, 17, 0, 148)
  279. Faint.Size = UDim2.new(0, 119, 0, 34)
  280. Faint.Font = Enum.Font.Highway
  281. Faint.FontSize = Enum.FontSize.Size24
  282. Faint.Text = "Faint"
  283. Faint.TextSize = 20
  284. Faint.TextWrapped = true
  285.  
  286. CloneIllusion.Name = "CloneIllusion"
  287. CloneIllusion.Parent = ScrollingFrame
  288. CloneIllusion.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627)
  289. CloneIllusion.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)
  290. CloneIllusion.Position = UDim2.new(0, 319, 0, 148)
  291. CloneIllusion.Size = UDim2.new(0, 119, 0, 34)
  292. CloneIllusion.Font = Enum.Font.Highway
  293. CloneIllusion.FontSize = Enum.FontSize.Size24
  294. CloneIllusion.Text = "Clone Illusion"
  295. CloneIllusion.TextSize = 20
  296. CloneIllusion.TextWrapped = true
  297.  
  298. Levitate.Name = "Levitate"
  299. Levitate.Parent = ScrollingFrame
  300. Levitate.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627)
  301. Levitate.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)
  302. Levitate.Position = UDim2.new(0, 17, 0, 104)
  303. Levitate.Size = UDim2.new(0, 119, 0, 34)
  304. Levitate.Font = Enum.Font.Highway
  305. Levitate.FontSize = Enum.FontSize.Size24
  306. Levitate.Text = "Levitate"
  307. Levitate.TextSize = 20
  308. Levitate.TextWrapped = true
  309.  
  310. DinoWalk.Name = "DinoWalk"
  311. DinoWalk.Parent = ScrollingFrame
  312. DinoWalk.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627)
  313. DinoWalk.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)
  314. DinoWalk.Position = UDim2.new(0, 168, 0, 104)
  315. DinoWalk.Size = UDim2.new(0, 119, 0, 34)
  316. DinoWalk.Font = Enum.Font.Highway
  317. DinoWalk.FontSize = Enum.FontSize.Size24
  318. DinoWalk.Text = "Dino Walk"
  319. DinoWalk.TextSize = 20
  320. DinoWalk.TextWrapped = true
  321.  
  322. FloorCrawl.Name = "FloorCrawl"
  323. FloorCrawl.Parent = ScrollingFrame
  324. FloorCrawl.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627)
  325. FloorCrawl.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)
  326. FloorCrawl.Position = UDim2.new(0, 319, 0, 104)
  327. FloorCrawl.Size = UDim2.new(0, 119, 0, 34)
  328. FloorCrawl.Font = Enum.Font.Highway
  329. FloorCrawl.FontSize = Enum.FontSize.Size24
  330. FloorCrawl.Text = "Floor Crawl"
  331. FloorCrawl.TextSize = 20
  332. FloorCrawl.TextWrapped = true
  333.  
  334. SwordSlam.Name = "SwordSlam"
  335. SwordSlam.Parent = ScrollingFrame
  336. SwordSlam.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627)
  337. SwordSlam.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)
  338. SwordSlam.Position = UDim2.new(0, 319, 0, 60)
  339. SwordSlam.Size = UDim2.new(0, 119, 0, 34)
  340. SwordSlam.Font = Enum.Font.Highway
  341. SwordSlam.FontSize = Enum.FontSize.Size24
  342. SwordSlam.Text = "Sword Slam"
  343. SwordSlam.TextSize = 20
  344. SwordSlam.TextWrapped = true
  345.  
  346. LoopHead.Name = "LoopHead"
  347. LoopHead.Parent = ScrollingFrame
  348. LoopHead.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627)
  349. LoopHead.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)
  350. LoopHead.Position = UDim2.new(0, 168, 0, 60)
  351. LoopHead.Size = UDim2.new(0, 119, 0, 34)
  352. LoopHead.Font = Enum.Font.Highway
  353. LoopHead.FontSize = Enum.FontSize.Size24
  354. LoopHead.Text = "Loop Head"
  355. LoopHead.TextSize = 20
  356. LoopHead.TextWrapped = true
  357.  
  358. HeroJump.Name = "HeroJump"
  359. HeroJump.Parent = ScrollingFrame
  360. HeroJump.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627)
  361. HeroJump.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)
  362. HeroJump.Position = UDim2.new(0, 17, 0, 60)
  363. HeroJump.Size = UDim2.new(0, 119, 0, 34)
  364. HeroJump.Font = Enum.Font.Highway
  365. HeroJump.FontSize = Enum.FontSize.Size24
  366. HeroJump.Text = "Hero Jump"
  367. HeroJump.TextSize = 20
  368. HeroJump.TextWrapped = true
  369.  
  370. Insane.Name = "Insane"
  371. Insane.Parent = ScrollingFrame
  372. Insane.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627)
  373. Insane.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)
  374. Insane.Position = UDim2.new(0, 319, 0, 16)
  375. Insane.Size = UDim2.new(0, 119, 0, 34)
  376. Insane.Font = Enum.Font.Highway
  377. Insane.FontSize = Enum.FontSize.Size24
  378. Insane.Text = "Insane"
  379. Insane.TextSize = 20
  380. Insane.TextWrapped = true
  381.  
  382. FloatingHead.Name = "FloatingHead"
  383. FloatingHead.Parent = ScrollingFrame
  384. FloatingHead.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627)
  385. FloatingHead.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)
  386. FloatingHead.Position = UDim2.new(0, 168, 0, 16)
  387. FloatingHead.Size = UDim2.new(0, 119, 0, 34)
  388. FloatingHead.Font = Enum.Font.Highway
  389. FloatingHead.FontSize = Enum.FontSize.Size24
  390. FloatingHead.Text = "Floating Head"
  391. FloatingHead.TextSize = 20
  392. FloatingHead.TextWrapped = true
  393.  
  394. HeadThrow.Name = "HeadThrow"
  395. HeadThrow.Parent = ScrollingFrame
  396. HeadThrow.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627)
  397. HeadThrow.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)
  398. HeadThrow.Position = UDim2.new(0, 17, 0, 16)
  399. HeadThrow.Size = UDim2.new(0, 119, 0, 34)
  400. HeadThrow.Font = Enum.Font.Highway
  401. HeadThrow.FontSize = Enum.FontSize.Size24
  402. HeadThrow.Text = "Head Throw"
  403. HeadThrow.TextSize = 20
  404. HeadThrow.TextWrapped = true
  405.  
  406. MovingDance.Name = "MovingDance"
  407. MovingDance.Parent = ScrollingFrame
  408. MovingDance.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627)
  409. MovingDance.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)
  410. MovingDance.Position = UDim2.new(0, 168, 0, 324)
  411. MovingDance.Size = UDim2.new(0, 119, 0, 34)
  412. MovingDance.Font = Enum.Font.Highway
  413. MovingDance.FontSize = Enum.FontSize.Size24
  414. MovingDance.Text = "Moving Dance"
  415. MovingDance.TextSize = 20
  416. MovingDance.TextWrapped = true
  417.  
  418. SuperPunch.Name = "SuperPunch"
  419. SuperPunch.Parent = ScrollingFrame
  420. SuperPunch.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627)
  421. SuperPunch.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)
  422. SuperPunch.Position = UDim2.new(0, 168, 0, 366)
  423. SuperPunch.Size = UDim2.new(0, 119, 0, 34)
  424. SuperPunch.Font = Enum.Font.Highway
  425. SuperPunch.FontSize = Enum.FontSize.Size24
  426. SuperPunch.Text = "Super Punch"
  427. SuperPunch.TextSize = 20
  428. SuperPunch.TextWrapped = true
  429.  
  430. ArmTurbine.Name = "ArmTurbine"
  431. ArmTurbine.Parent = ScrollingFrame
  432. ArmTurbine.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627)
  433. ArmTurbine.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)
  434. ArmTurbine.Position = UDim2.new(0, 319, 0, 366)
  435. ArmTurbine.Size = UDim2.new(0, 119, 0, 34)
  436. ArmTurbine.Font = Enum.Font.Highway
  437. ArmTurbine.FontSize = Enum.FontSize.Size24
  438. ArmTurbine.Text = "Arm Turbine"
  439. ArmTurbine.TextSize = 20
  440. ArmTurbine.TextWrapped = true
  441.  
  442. Dab.Name = "Dab"
  443. Dab.Parent = ScrollingFrame
  444. Dab.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627)
  445. Dab.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)
  446. Dab.Position = UDim2.new(0, 17, 0, 366)
  447. Dab.Size = UDim2.new(0, 119, 0, 34)
  448. Dab.Font = Enum.Font.Highway
  449. Dab.FontSize = Enum.FontSize.Size24
  450. Dab.Text = "Dab"
  451. Dab.TextSize = 20
  452. Dab.TextWrapped = true
  453.  
  454. FloatSit.Name = "FloatSit"
  455. FloatSit.Parent = ScrollingFrame
  456. FloatSit.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627)
  457. FloatSit.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)
  458. FloatSit.Position = UDim2.new(0, 168, 0, 410)
  459. FloatSit.Size = UDim2.new(0, 119, 0, 34)
  460. FloatSit.Font = Enum.Font.Highway
  461. FloatSit.FontSize = Enum.FontSize.Size24
  462. FloatSit.Text = "Float Sit"
  463. FloatSit.TextSize = 20
  464. FloatSit.TextWrapped = true
  465.  
  466. SuperFaint.Name = "SuperFaint"
  467. SuperFaint.Parent = ScrollingFrame
  468. SuperFaint.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627)
  469. SuperFaint.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)
  470. SuperFaint.Position = UDim2.new(0, 17, 0, 498)
  471. SuperFaint.Size = UDim2.new(0, 119, 0, 34)
  472. SuperFaint.Font = Enum.Font.Highway
  473. SuperFaint.FontSize = Enum.FontSize.Size24
  474. SuperFaint.Text = "Super Faint"
  475. SuperFaint.TextSize = 20
  476. SuperFaint.TextWrapped = true
  477.  
  478. BarrelRoll.Name = "BarrelRoll"
  479. BarrelRoll.Parent = ScrollingFrame
  480. BarrelRoll.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627)
  481. BarrelRoll.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)
  482. BarrelRoll.Position = UDim2.new(0, 319, 0, 410)
  483. BarrelRoll.Size = UDim2.new(0, 119, 0, 34)
  484. BarrelRoll.Font = Enum.Font.Highway
  485. BarrelRoll.FontSize = Enum.FontSize.Size24
  486. BarrelRoll.Text = "Barrel Roll"
  487. BarrelRoll.TextSize = 20
  488. BarrelRoll.TextWrapped = true
  489.  
  490. Scared.Name = "Scared"
  491. Scared.Parent = ScrollingFrame
  492. Scared.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627)
  493. Scared.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)
  494. Scared.Position = UDim2.new(0, 319, 0, 454)
  495. Scared.Size = UDim2.new(0, 119, 0, 34)
  496. Scared.Font = Enum.Font.Highway
  497. Scared.FontSize = Enum.FontSize.Size24
  498. Scared.Text = "Scared"
  499. Scared.TextSize = 20
  500. Scared.TextWrapped = true
  501.  
  502. InsaneArms.Name = "InsaneArms"
  503. InsaneArms.Parent = ScrollingFrame
  504. InsaneArms.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627)
  505. InsaneArms.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)
  506. InsaneArms.Position = UDim2.new(0, 17, 0, 454)
  507. InsaneArms.Size = UDim2.new(0, 119, 0, 34)
  508. InsaneArms.Font = Enum.Font.Highway
  509. InsaneArms.FontSize = Enum.FontSize.Size24
  510. InsaneArms.Text = "Insane Arms"
  511. InsaneArms.TextSize = 20
  512. InsaneArms.TextWrapped = true
  513.  
  514. SwordSlice.Name = "SwordSlice"
  515. SwordSlice.Parent = ScrollingFrame
  516. SwordSlice.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627)
  517. SwordSlice.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)
  518. SwordSlice.Position = UDim2.new(0, 168, 0, 454)
  519. SwordSlice.Size = UDim2.new(0, 119, 0, 34)
  520. SwordSlice.Font = Enum.Font.Highway
  521. SwordSlice.FontSize = Enum.FontSize.Size24
  522. SwordSlice.Text = "Sword Slice"
  523. SwordSlice.TextSize = 20
  524. SwordSlice.TextWrapped = true
  525.  
  526. SpinDance2.Name = "SpinDance2"
  527. SpinDance2.Parent = ScrollingFrame
  528. SpinDance2.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627)
  529. SpinDance2.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)
  530. SpinDance2.Position = UDim2.new(0, 168, 0, 498)
  531. SpinDance2.Size = UDim2.new(0, 119, 0, 34)
  532. SpinDance2.Font = Enum.Font.Highway
  533. SpinDance2.FontSize = Enum.FontSize.Size24
  534. SpinDance2.Text = "Spin Dance 2"
  535. SpinDance2.TextSize = 20
  536. SpinDance2.TextWrapped = true
  537.  
  538. BowDown.Name = "BowDown"
  539. BowDown.Parent = ScrollingFrame
  540. BowDown.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627)
  541. BowDown.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)
  542. BowDown.Position = UDim2.new(0, 319, 0, 498)
  543. BowDown.Size = UDim2.new(0, 119, 0, 34)
  544. BowDown.Font = Enum.Font.Highway
  545. BowDown.FontSize = Enum.FontSize.Size24
  546. BowDown.Text = "Bow Down"
  547. BowDown.TextSize = 20
  548. BowDown.TextWrapped = true
  549.  
  550. LoopSlam.Name = "LoopSlam"
  551. LoopSlam.Parent = ScrollingFrame
  552. LoopSlam.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627)
  553. LoopSlam.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)
  554. LoopSlam.Position = UDim2.new(0, 17, 0, 410)
  555. LoopSlam.Size = UDim2.new(0, 119, 0, 34)
  556. LoopSlam.Font = Enum.Font.Highway
  557. LoopSlam.FontSize = Enum.FontSize.Size24
  558. LoopSlam.Text = "Loop Slam"
  559. LoopSlam.TextSize = 20
  560. LoopSlam.TextWrapped = true
  561.  
  562. GuiTopFrame.Name = "Gui TopFrame"
  563. GuiTopFrame.Parent = MainFrame
  564. GuiTopFrame.BackgroundColor3 = Color3.new(1, 0.329412, 0.329412)
  565. GuiTopFrame.BorderColor3 = Color3.new(0.243137, 0.243137, 0.243137)
  566. GuiTopFrame.Size = UDim2.new(0, 460, 0, 32)
  567.  
  568. CloseGUI.Name = "CloseGUI"
  569. CloseGUI.Parent = GuiTopFrame
  570. CloseGUI.BackgroundColor3 = Color3.new(1, 1, 1)
  571. CloseGUI.BackgroundTransparency = 1
  572. CloseGUI.Position = UDim2.new(0, 426, 0, 0)
  573. CloseGUI.Size = UDim2.new(0, 34, 0, 32)
  574. CloseGUI.Font = Enum.Font.SourceSans
  575. CloseGUI.FontSize = Enum.FontSize.Size48
  576. CloseGUI.Text = "X"
  577. CloseGUI.TextColor3 = Color3.new(0.333333, 0, 0)
  578. CloseGUI.TextSize = 40
  579. CloseGUI.TextWrapped = true
  580.  
  581. Title.Name = "Title"
  582. Title.Parent = GuiTopFrame
  583. Title.BackgroundColor3 = Color3.new(1, 1, 1)
  584. Title.BackgroundTransparency = 1
  585. Title.Size = UDim2.new(0, 460, 0, 32)
  586. Title.FontSize = Enum.FontSize.Size14
  587. Title.Text = "│Energize│"
  588. Title.TextColor3 = Color3.new(0.164706, 0.164706, 0.164706)
  589. Title.TextSize = 14
  590. Title.TextStrokeColor3 = Color3.new(0.384314, 0.917647, 1)
  591. Title.TextStrokeTransparency = 0.69999998807907
  592. Title.TextWrapped = true
  593.  
  594. -- Buttons
  595. col = Color3.new(0.886275, 0.776471, 0.368627)
  596. loc = Color3.new(1, 0.906471, 0.568627)
  597.  
  598. CloseGUI.MouseButton1Click:connect(function()
  599. MainFrame.Visible = false
  600. SideFrame.Visible = true
  601. SideFrame.Position = MainFrame.Position
  602. end)
  603.  
  604. OpenGUI.MouseButton1Click:connect(function()
  605. MainFrame.Visible = true
  606. SideFrame.Visible = false
  607. MainFrame.Position = SideFrame.Position
  608. end)
  609.  
  610. local Anim = Instance.new("Animation")
  611. Anim.AnimationId = "rbxassetid://35154961"
  612. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  613. track.Looped = true
  614. local HeadThrowACTIVE = false
  615. HeadThrow.MouseButton1Click:connect(function()
  616. HeadThrowACTIVE = not HeadThrowACTIVE
  617. if HeadThrowACTIVE then
  618. track:Play(.1, 1, 1)
  619. HeadThrow.BackgroundColor3 = loc
  620. else
  621. track:Stop()
  622. HeadThrow.BackgroundColor3 = col
  623. end
  624. end)
  625.  
  626. local Anim = Instance.new("Animation")
  627. Anim.AnimationId = "rbxassetid://121572214"
  628. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  629. track.Looped = true
  630. local FloatingHeadACTIVE = false
  631. FloatingHead.MouseButton1Click:connect(function()
  632. FloatingHeadACTIVE = not FloatingHeadACTIVE
  633. if FloatingHeadACTIVE then
  634. track:Play(.1, 1, 1)
  635. FloatingHead.BackgroundColor3 = loc
  636. else
  637. track:Stop()
  638. FloatingHead.BackgroundColor3 = col
  639. end
  640. end)
  641.  
  642. local Anim = Instance.new("Animation")
  643. Anim.AnimationId = "rbxassetid://182724289"
  644. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  645. track.Looped = true
  646. local CrouchACTIVE = false
  647. Crouch.MouseButton1Click:connect(function()
  648. CrouchACTIVE = not CrouchACTIVE
  649. if CrouchACTIVE then
  650. track:Play(.1, 1, 1)
  651. Crouch.BackgroundColor3 = loc
  652. else
  653. track:Stop()
  654. Crouch.BackgroundColor3 = col
  655. end
  656. end)
  657.  
  658. local Anim = Instance.new("Animation")
  659. Anim.AnimationId = "rbxassetid://282574440"
  660. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  661. track.Looped = true
  662. local FloorCrawlACTIVE = false
  663. FloorCrawl.MouseButton1Click:connect(function()
  664. FloorCrawlACTIVE = not FloorCrawlACTIVE
  665. if FloorCrawlACTIVE then
  666. track:Play(.1, 1, 1)
  667. FloorCrawl.BackgroundColor3 = loc
  668. else
  669. track:Stop()
  670. FloorCrawl.BackgroundColor3 = col
  671. end
  672. end)
  673.  
  674. local Anim = Instance.new("Animation")
  675. Anim.AnimationId = "rbxassetid://204328711"
  676. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  677. track.Looped = true
  678. local DinoWalkACTIVE = false
  679. DinoWalk.MouseButton1Click:connect(function()
  680. DinoWalkACTIVE = not DinoWalkACTIVE
  681. if DinoWalkACTIVE then
  682. track:Play(.1, 1, 1)
  683. DinoWalk.BackgroundColor3 = loc
  684. else
  685. track:Stop()
  686. DinoWalk.BackgroundColor3 = col
  687. end
  688. end)
  689.  
  690. local Anim = Instance.new("Animation")
  691. Anim.AnimationId = "rbxassetid://429681631"
  692. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  693. track.Looped = true
  694. local JumpingJacksACTIVE = false
  695. JumpingJacks.MouseButton1Click:connect(function()
  696. JumpingJacksACTIVE = not JumpingJacksACTIVE
  697. if JumpingJacksACTIVE then
  698. track:Play(.1, 1, 1)
  699. JumpingJacks.BackgroundColor3 = loc
  700. else
  701. track:Stop()
  702. JumpingJacks.BackgroundColor3 = col
  703. end
  704. end)
  705.  
  706. local Anim = Instance.new("Animation")
  707. Anim.AnimationId = "rbxassetid://35154961"
  708. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  709. track.Looped = true
  710. local LoopHeadACTIVE = false
  711. LoopHead.MouseButton1Click:connect(function()
  712. LoopHeadACTIVE = not LoopHeadACTIVE
  713. if LoopHeadACTIVE then
  714. track:Play(1, 1, 1e6)
  715. LoopHead.BackgroundColor3 = loc
  716. else
  717. track:Stop()
  718. LoopHead.BackgroundColor3 = col
  719. end
  720. end)
  721.  
  722. local Anim = Instance.new("Animation")
  723. Anim.AnimationId = "rbxassetid://184574340"
  724. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  725. track.Looped = true
  726. local HeroJumpACTIVE = false
  727. HeroJump.MouseButton1Click:connect(function()
  728. HeroJumpACTIVE = not HeroJumpACTIVE
  729. if HeroJumpACTIVE then
  730. track:Play(.1, 1, 1)
  731. HeroJump.BackgroundColor3 = loc
  732. else
  733. track:Stop()
  734. HeroJump.BackgroundColor3 = col
  735. end
  736. end)
  737.  
  738. local Anim = Instance.new("Animation")
  739. Anim.AnimationId = "rbxassetid://181526230"
  740. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  741. track.Looped = true
  742. local FaintACTIVE = false
  743. Faint.MouseButton1Click:connect(function()
  744. FaintACTIVE = not FaintACTIVE
  745. if FaintACTIVE then
  746. track:Play(.1, 1, 1)
  747. Faint.BackgroundColor3 = loc
  748. else
  749. track:Stop()
  750. Faint.BackgroundColor3 = col
  751. end
  752. end)
  753.  
  754. local Anim = Instance.new("Animation")
  755. Anim.AnimationId = "rbxassetid://181525546"
  756. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  757. track.Looped = true
  758. local FloorFaintACTIVE = false
  759. FloorFaint.MouseButton1Click:connect(function()
  760. FloorFaintACTIVE = not FloorFaintACTIVE
  761. if FloorFaintACTIVE then
  762. track:Play(.1, 1, 1)
  763. FloorFaint.BackgroundColor3 = loc
  764. else
  765. track:Stop()
  766. FloorFaint.BackgroundColor3 = col
  767. end
  768. end)
  769.  
  770. local Anim = Instance.new("Animation")
  771. Anim.AnimationId = "rbxassetid://181525546"
  772. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  773. track.Looped = true
  774. local SuperFaintACTIVE = false
  775. SuperFaint.MouseButton1Click:connect(function()
  776. SuperFaintACTIVE = not SuperFaintACTIVE
  777. if SuperFaintACTIVE then
  778. track:Play(.1, 1, 1e8)
  779. SuperFaint.BackgroundColor3 = loc
  780. else
  781. track:Stop()
  782. SuperFaint.BackgroundColor3 = col
  783. end
  784. end)
  785.  
  786. local Anim = Instance.new("Animation")
  787. Anim.AnimationId = "rbxassetid://313762630"
  788. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  789. track.Looped = true
  790. local LevitateACTIVE = false
  791. Levitate.MouseButton1Click:connect(function()
  792. LevitateACTIVE = not LevitateACTIVE
  793. if LevitateACTIVE then
  794. track:Play(.1, 1, 1)
  795. Levitate.BackgroundColor3 = loc
  796. else
  797. track:Stop()
  798. Levitate.BackgroundColor3 = col
  799. end
  800. end)
  801.  
  802. local Anim = Instance.new("Animation")
  803. Anim.AnimationId = "rbxassetid://183412246"
  804. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  805. track.Looped = true
  806. local DabACTIVE = false
  807. Dab.MouseButton1Click:connect(function()
  808. DabACTIVE = not DabACTIVE
  809. if DabACTIVE then
  810. track:Play(.1, 1, 1)
  811. Dab.BackgroundColor3 = loc
  812. else
  813. track:Stop()
  814. Dab.BackgroundColor3 = col
  815. end
  816. end)
  817.  
  818. local Anim = Instance.new("Animation")
  819. Anim.AnimationId = "rbxassetid://188632011"
  820. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  821. track.Looped = true
  822. local SpinACTIVE = false
  823. Spinner.MouseButton1Click:connect(function()
  824. SpinACTIVE = not SpinACTIVE
  825. if SpinACTIVE then
  826. track:Play(.1, 1, 1)
  827. Spinner.BackgroundColor3 = loc
  828. else
  829. track:Stop()
  830. Spinner.BackgroundColor3 = col
  831. end
  832. end)
  833.  
  834. local Anim = Instance.new("Animation")
  835. Anim.AnimationId = "rbxassetid://179224234"
  836. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  837. track.Looped = true
  838. local FloatSitACTIVE = false
  839. FloatSit.MouseButton1Click:connect(function()
  840. FloatSitACTIVE = not FloatSitACTIVE
  841. if FloatSitACTIVE then
  842. track:Play(.1, 1, 1)
  843. FloatSit.BackgroundColor3 = loc
  844. else
  845. track:Stop()
  846. FloatSit.BackgroundColor3 = col
  847. end
  848. end)
  849.  
  850. local Anim = Instance.new("Animation")
  851. Anim.AnimationId = "rbxassetid://429703734"
  852. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  853. track.Looped = true
  854. local MovingDanceACTIVE = false
  855. MovingDance.MouseButton1Click:connect(function()
  856. MovingDanceACTIVE = not MovingDanceACTIVE
  857. if MovingDanceACTIVE then
  858. track:Play(.1, 1, 1)
  859. MovingDance.BackgroundColor3 = loc
  860. else
  861. track:Stop()
  862. MovingDance.BackgroundColor3 = col
  863. end
  864. end)
  865.  
  866. local Anim = Instance.new("Animation")
  867. Anim.AnimationId = "rbxassetid://215384594"
  868. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  869. track.Looped = true
  870. local WeirdMoveACTIVE = false
  871. WeirdMove.MouseButton1Click:connect(function()
  872. WeirdMoveACTIVE = not WeirdMoveACTIVE
  873. if WeirdMoveACTIVE then
  874. track:Play(.1, 1, 1)
  875. WeirdMove.BackgroundColor3 = loc
  876. else
  877. track:Stop()
  878. WeirdMove.BackgroundColor3 = col
  879. end
  880. end)
  881.  
  882. local Anim = Instance.new("Animation")
  883. Anim.AnimationId = "rbxassetid://215384594"
  884. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  885. track.Looped = true
  886. local CloneIllusionACTIVE = false
  887. CloneIllusion.MouseButton1Click:connect(function()
  888. CloneIllusionACTIVE = not CloneIllusionACTIVE
  889. if CloneIllusionACTIVE then
  890. track:Play(.1, 1, 1e7)
  891. CloneIllusion.BackgroundColor3 = loc
  892. else
  893. track:Stop()
  894. CloneIllusion.BackgroundColor3 = col
  895. end
  896. end)
  897.  
  898. local Anim = Instance.new("Animation")
  899. Anim.AnimationId = "rbxassetid://313762630"
  900. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  901. track.Looped = true
  902. local GlitchLevitateACTIVE = false
  903. GlitchLevitate.MouseButton1Click:connect(function()
  904. GlitchLevitateACTIVE = not GlitchLevitateACTIVE
  905. if GlitchLevitateACTIVE then
  906. track:Play(.1, 1, 1e7)
  907. GlitchLevitate.BackgroundColor3 = loc
  908. else
  909. track:Stop()
  910. GlitchLevitate.BackgroundColor3 = col
  911. end
  912. end)
  913.  
  914. local Anim = Instance.new("Animation")
  915. Anim.AnimationId = "rbxassetid://429730430"
  916. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  917. track.Looped = true
  918. local SpinDanceACTIVE = false
  919. SpinDance.MouseButton1Click:connect(function()
  920. SpinDanceACTIVE = not SpinDanceACTIVE
  921. if SpinDanceACTIVE then
  922. track:Play(.1, 1, 1)
  923. SpinDance.BackgroundColor3 = loc
  924. else
  925. track:Stop()
  926. SpinDance.BackgroundColor3 = col
  927. end
  928. end)
  929.  
  930. local Anim = Instance.new("Animation")
  931. Anim.AnimationId = "rbxassetid://45834924"
  932. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  933. track.Looped = true
  934. local MoonDanceACTIVE = false
  935. MoonDance.MouseButton1Click:connect(function()
  936. MoonDanceACTIVE = not MoonDanceACTIVE
  937. if MoonDanceACTIVE then
  938. track:Play(.1, 1, 1)
  939. MoonDance.BackgroundColor3 = loc
  940. else
  941. track:Stop()
  942. MoonDance.BackgroundColor3 = col
  943. end
  944. end)
  945.  
  946. local Anim = Instance.new("Animation")
  947. Anim.AnimationId = "rbxassetid://204062532"
  948. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  949. track.Looped = true
  950. local FullPunchACTIVE = false
  951. FullPunch.MouseButton1Click:connect(function()
  952. FullPunchACTIVE = not FullPunchACTIVE
  953. if FullPunchACTIVE then
  954. track:Play(.1, 1, 1)
  955. FullPunch.BackgroundColor3 = loc
  956. else
  957. track:Stop()
  958. FullPunch.BackgroundColor3 = col
  959. end
  960. end)
  961.  
  962. local Anim = Instance.new("Animation")
  963. Anim.AnimationId = "rbxassetid://186934910"
  964. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  965. track.Looped = true
  966. local SpinDance2ACTIVE = false
  967. SpinDance2.MouseButton1Click:connect(function()
  968. SpinDance2ACTIVE = not SpinDance2ACTIVE
  969. if SpinDance2ACTIVE then
  970. track:Play(.1, 1, 1)
  971. SpinDance2.BackgroundColor3 = loc
  972. else
  973. track:Stop()
  974. SpinDance2.BackgroundColor3 = col
  975. end
  976. end)
  977.  
  978. local Anim = Instance.new("Animation")
  979. Anim.AnimationId = "rbxassetid://204292303"
  980. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  981. track.Looped = true
  982. local BowDownACTIVE = false
  983. BowDown.MouseButton1Click:connect(function()
  984. BowDownACTIVE = not BowDownACTIVE
  985. if BowDownACTIVE then
  986. track:Play(.1, 1, 1)
  987. BowDown.BackgroundColor3 = loc
  988. else
  989. track:Stop()
  990. BowDown.BackgroundColor3 = col
  991. end
  992. end)
  993.  
  994. local Anim = Instance.new("Animation")
  995. Anim.AnimationId = "rbxassetid://204295235"
  996. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  997. track.Looped = true
  998. local SwordSlamACTIVE = false
  999. SwordSlam.MouseButton1Click:connect(function()
  1000. SwordSlamACTIVE = not SwordSlamACTIVE
  1001. if SwordSlamACTIVE then
  1002. track:Play(.1, 1, 1)
  1003. SwordSlam.BackgroundColor3 = loc
  1004. else
  1005. track:Stop()
  1006. SwordSlam.BackgroundColor3 = col
  1007. end
  1008. end)
  1009.  
  1010. local Anim = Instance.new("Animation")
  1011. Anim.AnimationId = "rbxassetid://204295235"
  1012. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  1013. track.Looped = true
  1014. local LoopSlamACTIVE = false
  1015. LoopSlam.MouseButton1Click:connect(function()
  1016. LoopSlamACTIVE = not LoopSlamACTIVE
  1017. if LoopSlamACTIVE then
  1018. track:Play(.1, 1, 1e7)
  1019. LoopSlam.BackgroundColor3 = loc
  1020. else
  1021. track:Stop()
  1022. LoopSlam.BackgroundColor3 = col
  1023. end
  1024. end)
  1025.  
  1026. local Anim = Instance.new("Animation")
  1027. Anim.AnimationId = "rbxassetid://184574340"
  1028. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  1029. track.Looped = true
  1030. local MegaInsaneACTIVE = false
  1031. MegaInsane.MouseButton1Click:connect(function()
  1032. MegaInsaneACTIVE = not MegaInsaneACTIVE
  1033. if MegaInsaneACTIVE then
  1034. track:Play(.1, 1, 1e8)
  1035. MegaInsane.BackgroundColor3 = loc
  1036. else
  1037. track:Stop()
  1038. MegaInsane.BackgroundColor3 = col
  1039. end
  1040. end)
  1041.  
  1042. local Anim = Instance.new("Animation")
  1043. Anim.AnimationId = "rbxassetid://126753849"
  1044. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  1045. track.Looped = true
  1046. local SuperPunchACTIVE = false
  1047. SuperPunch.MouseButton1Click:connect(function()
  1048. SuperPunchACTIVE = not SuperPunchACTIVE
  1049. if SuperPunchACTIVE then
  1050. track:Play(.1, 1, 3)
  1051. SuperPunch.BackgroundColor3 = loc
  1052. else
  1053. track:Stop()
  1054. SuperPunch.BackgroundColor3 = col
  1055. end
  1056. end)
  1057.  
  1058. local Anim = Instance.new("Animation")
  1059. Anim.AnimationId = "rbxassetid://218504594"
  1060. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  1061. track.Looped = true
  1062. local FullSwingACTIVE = false
  1063. FullSwing.MouseButton1Click:connect(function()
  1064. FullSwingACTIVE = not FullSwingACTIVE
  1065. if FullSwingACTIVE then
  1066. track:Play(.1, 1, 1)
  1067. FullSwing.BackgroundColor3 = loc
  1068. else
  1069. track:Stop()
  1070. FullSwing.BackgroundColor3 = col
  1071. end
  1072. end)
  1073.  
  1074. local Anim = Instance.new("Animation")
  1075. Anim.AnimationId = "rbxassetid://259438880"
  1076. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  1077. track.Looped = true
  1078. local ArmTurbineACTIVE = false
  1079. ArmTurbine.MouseButton1Click:connect(function()
  1080. ArmTurbineACTIVE = not ArmTurbineACTIVE
  1081. if ArmTurbineACTIVE then
  1082. track:Play(.1, 1, 1e3)
  1083. ArmTurbine.BackgroundColor3 = loc
  1084. else
  1085. track:Stop()
  1086. ArmTurbine.BackgroundColor3 = col
  1087. end
  1088. end)
  1089.  
  1090. local Anim = Instance.new("Animation")
  1091. Anim.AnimationId = "rbxassetid://136801964"
  1092. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  1093. track.Looped = true
  1094. local BarrelRollACTIVE = false
  1095. BarrelRoll.MouseButton1Click:connect(function()
  1096. BarrelRollACTIVE = not BarrelRollACTIVE
  1097. if BarrelRollACTIVE then
  1098. track:Play(.1, 1, 1)
  1099. BarrelRoll.BackgroundColor3 = loc
  1100. else
  1101. track:Stop()
  1102. BarrelRoll.BackgroundColor3 = col
  1103. end
  1104. end)
  1105.  
  1106. local Anim = Instance.new("Animation")
  1107. Anim.AnimationId = "rbxassetid://180612465"
  1108. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  1109. track.Looped = true
  1110. local ScaredACTIVE = false
  1111. Scared.MouseButton1Click:connect(function()
  1112. ScaredACTIVE = not ScaredACTIVE
  1113. if ScaredACTIVE then
  1114. track:Play(.1, 1, 1)
  1115. Scared.BackgroundColor3 = loc
  1116. else
  1117. track:Stop()
  1118. Scared.BackgroundColor3 = col
  1119. end
  1120. end)
  1121.  
  1122. local Anim = Instance.new("Animation")
  1123. Anim.AnimationId = "rbxassetid://33796059"
  1124. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  1125. track.Looped = true
  1126. local InsaneACTIVE = false
  1127. Insane.MouseButton1Click:connect(function()
  1128. InsaneACTIVE = not InsaneACTIVE
  1129. if InsaneACTIVE then
  1130. track:Play(.1, 1, 1e8)
  1131. Insane.BackgroundColor3 = loc
  1132. else
  1133. track:Stop()
  1134. Insane.BackgroundColor3 = col
  1135. end
  1136. end)
  1137.  
  1138. local Anim = Instance.new("Animation")
  1139. Anim.AnimationId = "rbxassetid://33169583"
  1140. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  1141. track.Looped = true
  1142. local ArmDetachACTIVE = false
  1143. ArmDetach.MouseButton1Click:connect(function()
  1144. ArmDetachACTIVE = not ArmDetachACTIVE
  1145. if ArmDetachACTIVE then
  1146. track:Play(.1, 1, 1e7)
  1147. ArmDetach.BackgroundColor3 = loc
  1148. else
  1149. track:Stop()
  1150. ArmDetach.BackgroundColor3 = col
  1151. end
  1152. end)
  1153.  
  1154. local Anim = Instance.new("Animation")
  1155. Anim.AnimationId = "rbxassetid://35978879"
  1156. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  1157. track.Looped = true
  1158. local SwordSliceACTIVE = false
  1159. SwordSlice.MouseButton1Click:connect(function()
  1160. SwordSliceACTIVE = not SwordSliceACTIVE
  1161. if SwordSliceACTIVE then
  1162. track:Play(.1, 1, 1)
  1163. SwordSlice.BackgroundColor3 = loc
  1164. else
  1165. track:Stop()
  1166. SwordSlice.BackgroundColor3 = col
  1167. end
  1168. end)
  1169.  
  1170. local Anim = Instance.new("Animation")
  1171. Anim.AnimationId = "rbxassetid://27432691"
  1172. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  1173. track.Looped = true
  1174. local InsaneArmsACTIVE = false
  1175. InsaneArms.MouseButton1Click:connect(function()
  1176. InsaneArmsACTIVE = not InsaneArmsACTIVE
  1177. if InsaneArmsACTIVE then
  1178. track:Play(.1, 1, 1e7)
  1179. InsaneArms.BackgroundColor3 = loc
  1180. else
  1181. track:Stop()
  1182. InsaneArms.BackgroundColor3 = col
  1183. end
  1184. end)
Add Comment
Please, Sign In to add comment