Advertisement
HenloMyDude

energize but i add X button to close the gui

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