Advertisement
oatmeal2009

scary

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