Advertisement
Guest User

Untitled

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