Waffle212

Untitled

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