Advertisement
raulib

Energize but improved

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