Advertisement
alek_

Energize Script | R15

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