roblox energize r6 animations script - Pastebin.com (2024)

  1. -- Energize by illremember, fe animations

  2. -- DO NOT COPY AND CLAIM AS OWN, if you are using some of the script for your own, credit is highly appreciated!

  3. -- Thank you, and enjoy.

  4. -- Objects

  5. local Energize = Instance.new("ScreenGui") -- The actual GUI

  6. local SideFrame = Instance.new("Frame") -- Visible when GUI is closed

  7. local OpenGUI = Instance.new("TextButton") -- Part of SideFrame

  8. local SideFrameTitle = Instance.new("TextLabel") -- Part of SideFrame

  9. local MainFrame = Instance.new("Frame") -- All of the stuff on the main frame

  10. local GuiBottomFrame = Instance.new("Frame") -- Part of Active Frame

  11. local Credits = Instance.new("TextLabel") -- Credits to illremember, hello there

  12. local ScrollingFrame = Instance.new("ScrollingFrame") -- The scrolling frame of animations

  13. local CheckR = Instance.new("TextLabel") -- Check if R15 or R6

  14. local ScrollingFrameR15 = Instance.new("ScrollingFrame") -- The scrolling frame of R15 animations

  15. local CrazySlash = Instance.new("TextButton")--COMPLETE

  16. local Open = Instance.new("TextButton")--COMPLETE

  17. local R15Spinner = Instance.new("TextButton")--COMPLETE

  18. local ArmsOut = Instance.new("TextButton")--COMPLETE

  19. local FloatSlash = Instance.new("TextButton")--COMPLETE

  20. local WeirdZombie = Instance.new("TextButton")--COMPLETE

  21. local DownSlash = Instance.new("TextButton")--COMPLETE

  22. local Pull = Instance.new("TextButton")--COMPLETE

  23. local CircleArm = Instance.new("TextButton")--COMPLETE

  24. local Bend = Instance.new("TextButton")--COMPLETE

  25. local RotateSlash = Instance.new("TextButton")--COMPLETE

  26. local FlingArms = Instance.new("TextButton")--COMPLETE

  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. local GuiTopFrame = Instance.new("Frame") -- Top of the main frame

  64. local CloseGUI = Instance.new("TextButton") -- To close the GUI

  65. local Title = Instance.new("TextLabel") -- Actual title of GUI, Energize

  66. -- Properties

  67. Energize.Name = "Energize"

  68. Energize.Parent = game.Players.LocalPlayer.PlayerGui

  69. SideFrame.Name = "SideFrame"

  70. SideFrame.Parent = Energize

  71. SideFrame.Active = true

  72. SideFrame.BackgroundColor3 = Color3.new(1, 0.329412, 0.329412)

  73. SideFrame.Draggable = true

  74. SideFrame.Position = UDim2.new(0, 376, 0, 125)

  75. SideFrame.Size = UDim2.new(0, 460, 0, 32)

  76. SideFrame.Visible = false

  77. OpenGUI.Name = "OpenGUI"

  78. OpenGUI.Parent = SideFrame

  79. OpenGUI.BackgroundColor3 = Color3.new(1, 1, 1)

  80. OpenGUI.BackgroundTransparency = 1

  81. OpenGUI.Position = UDim2.new(0, 426, 0, 0)

  82. OpenGUI.Size = UDim2.new(0, 34, 0, 32)

  83. OpenGUI.Font = Enum.Font.SourceSans

  84. OpenGUI.FontSize = Enum.FontSize.Size48

  85. OpenGUI.Text = "X"

  86. OpenGUI.TextColor3 = Color3.new(0.333333, 0, 0)

  87. OpenGUI.TextSize = 40

  88. OpenGUI.TextWrapped = true

  89. SideFrameTitle.Name = "SideFrameTitle"

  90. SideFrameTitle.Parent = SideFrame

  91. SideFrameTitle.BackgroundColor3 = Color3.new(1, 1, 1)

  92. SideFrameTitle.BackgroundTransparency = 1

  93. SideFrameTitle.Position = UDim2.new(0, 170, 0, 0)

  94. SideFrameTitle.Size = UDim2.new(0, 119, 0, 31)

  95. SideFrameTitle.Font = Enum.Font.Arial

  96. SideFrameTitle.FontSize = Enum.FontSize.Size24

  97. SideFrameTitle.Text = "Energize"

  98. SideFrameTitle.TextSize = 21

  99. SideFrameTitle.TextStrokeColor3 = Color3.new(0.27451, 0.92549, 0.905882)

  100. SideFrameTitle.TextStrokeTransparency = 0.69999998807907

  101. MainFrame.Name = "MainFrame"

  102. MainFrame.Parent = Energize

  103. MainFrame.Active = true

  104. MainFrame.BackgroundColor3 = Color3.new(1, 1, 1)

  105. MainFrame.BackgroundTransparency = 1

  106. MainFrame.Draggable = true

  107. MainFrame.Position = UDim2.new(0, 376, 0, 125)

  108. MainFrame.Size = UDim2.new(0, 444, 0, 280)

  109. GuiBottomFrame.Name = "Gui BottomFrame"

  110. GuiBottomFrame.Parent = MainFrame

  111. GuiBottomFrame.BackgroundColor3 = Color3.new(1, 0.329412, 0.329412)

  112. GuiBottomFrame.BorderColor3 = Color3.new(0.243137, 0.243137, 0.243137)

  113. GuiBottomFrame.Position = UDim2.new(0, 0, 0, 247)

  114. GuiBottomFrame.Size = UDim2.new(0, 460, 0, 32)

  115. Credits.Name = "Credits"

  116. Credits.Parent = GuiBottomFrame

  117. Credits.BackgroundColor3 = Color3.new(1, 1, 1)

  118. Credits.BackgroundTransparency = 1

  119. Credits.Size = UDim2.new(0, 460, 0, 32)

  120. Credits.FontSize = Enum.FontSize.Size14

  121. Credits.Text = "By illremember FE Animations Gui"

  122. Credits.TextColor3 = Color3.new(0.219608, 0.219608, 0.219608)

  123. Credits.TextSize = 14

  124. Credits.TextStrokeColor3 = Color3.new(0.141176, 0.870588, 0.713726)

  125. Credits.TextStrokeTransparency = 0.69999998807907

  126. Credits.TextWrapped = true

  127. ScrollingFrame.Parent = MainFrame

  128. ScrollingFrame.BackgroundColor3 = Color3.new(1, 0.564706, 0.564706)

  129. ScrollingFrame.Position = UDim2.new(0, 0, 0, 32)

  130. ScrollingFrame.Size = UDim2.new(0, 460, 0, 215)

  131. ScrollingFrame.ScrollBarThickness = 13

  132. FullSwing.Name = "FullSwing"

  133. FullSwing.Parent = ScrollingFrame

  134. FullSwing.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627)

  135. FullSwing.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)

  136. FullSwing.Position = UDim2.new(0, 17, 0, 322)

  137. FullSwing.Size = UDim2.new(0, 119, 0, 34)

  138. FullSwing.Font = Enum.Font.Highway

  139. FullSwing.FontSize = Enum.FontSize.Size24

  140. FullSwing.Text = "Full Swing"

  141. FullSwing.TextSize = 20

  142. FullSwing.TextWrapped = true

  143. GlitchLevitate.Name = "GlitchLevitate"

  144. GlitchLevitate.Parent = ScrollingFrame

  145. GlitchLevitate.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627)

  146. GlitchLevitate.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)

  147. GlitchLevitate.Position = UDim2.new(0, 319, 0, 322)

  148. GlitchLevitate.Size = UDim2.new(0, 119, 0, 34)

  149. GlitchLevitate.Font = Enum.Font.Highway

  150. GlitchLevitate.FontSize = Enum.FontSize.Size24

  151. GlitchLevitate.Text = "Glitch Levitate"

  152. GlitchLevitate.TextSize = 20

  153. GlitchLevitate.TextWrapped = true

  154. MoonDance.Name = "MoonDance"

  155. MoonDance.Parent = ScrollingFrame

  156. MoonDance.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627)

  157. MoonDance.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)

  158. MoonDance.Position = UDim2.new(0, 319, 0, 280)

  159. MoonDance.Size = UDim2.new(0, 119, 0, 34)

  160. MoonDance.Font = Enum.Font.Highway

  161. MoonDance.FontSize = Enum.FontSize.Size24

  162. MoonDance.Text = "Moon Dance"

  163. MoonDance.TextSize = 20

  164. MoonDance.TextWrapped = true

  165. FullPunch.Name = "FullPunch"

  166. FullPunch.Parent = ScrollingFrame

  167. FullPunch.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627)

  168. FullPunch.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)

  169. FullPunch.Position = UDim2.new(0, 17, 0, 280)

  170. FullPunch.Size = UDim2.new(0, 119, 0, 34)

  171. FullPunch.Font = Enum.Font.Highway

  172. FullPunch.FontSize = Enum.FontSize.Size24

  173. FullPunch.Text = "Full Punch"

  174. FullPunch.TextSize = 20

  175. FullPunch.TextWrapped = true

  176. Crouch.Name = "Crouch"

  177. Crouch.Parent = ScrollingFrame

  178. Crouch.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627)

  179. Crouch.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)

  180. Crouch.Position = UDim2.new(0, 168, 0, 280)

  181. Crouch.Size = UDim2.new(0, 119, 0, 34)

  182. Crouch.Font = Enum.Font.Highway

  183. Crouch.FontSize = Enum.FontSize.Size24

  184. Crouch.Text = "Crouch"

  185. Crouch.TextSize = 20

  186. Crouch.TextWrapped = true

  187. SpinDance.Name = "SpinDance"

  188. SpinDance.Parent = ScrollingFrame

  189. SpinDance.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627)

  190. SpinDance.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)

  191. SpinDance.Position = UDim2.new(0, 168, 0, 236)

  192. SpinDance.Size = UDim2.new(0, 119, 0, 34)

  193. SpinDance.Font = Enum.Font.Highway

  194. SpinDance.FontSize = Enum.FontSize.Size24

  195. SpinDance.Text = "Spin Dance"

  196. SpinDance.TextSize = 20

  197. SpinDance.TextWrapped = true

  198. FloorFaint.Name = "FloorFaint"

  199. FloorFaint.Parent = ScrollingFrame

  200. FloorFaint.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627)

  201. FloorFaint.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)

  202. FloorFaint.Position = UDim2.new(0, 17, 0, 236)

  203. FloorFaint.Size = UDim2.new(0, 119, 0, 34)

  204. FloorFaint.Font = Enum.Font.Highway

  205. FloorFaint.FontSize = Enum.FontSize.Size24

  206. FloorFaint.Text = "Floor Faint"

  207. FloorFaint.TextSize = 20

  208. FloorFaint.TextWrapped = true

  209. JumpingJacks.Name = "JumpingJacks"

  210. JumpingJacks.Parent = ScrollingFrame

  211. JumpingJacks.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627)

  212. JumpingJacks.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)

  213. JumpingJacks.Position = UDim2.new(0, 319, 0, 236)

  214. JumpingJacks.Size = UDim2.new(0, 119, 0, 34)

  215. JumpingJacks.Font = Enum.Font.Highway

  216. JumpingJacks.FontSize = Enum.FontSize.Size24

  217. JumpingJacks.Text = "Jumping Jacks"

  218. JumpingJacks.TextSize = 20

  219. JumpingJacks.TextWrapped = true

  220. Spinner.Name = "Spinner"

  221. Spinner.Parent = ScrollingFrame

  222. Spinner.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627)

  223. Spinner.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)

  224. Spinner.Position = UDim2.new(0, 17, 0, 192)

  225. Spinner.Size = UDim2.new(0, 119, 0, 34)

  226. Spinner.Font = Enum.Font.Highway

  227. Spinner.FontSize = Enum.FontSize.Size24

  228. Spinner.Text = "Spinner"

  229. Spinner.TextSize = 20

  230. Spinner.TextWrapped = true

  231. MegaInsane.Name = "MegaInsane"

  232. MegaInsane.Parent = ScrollingFrame

  233. MegaInsane.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627)

  234. MegaInsane.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)

  235. MegaInsane.Position = UDim2.new(0, 168, 0, 192)

  236. MegaInsane.Size = UDim2.new(0, 119, 0, 34)

  237. MegaInsane.Font = Enum.Font.Highway

  238. MegaInsane.FontSize = Enum.FontSize.Size24

  239. MegaInsane.Text = "Mega Insane"

  240. MegaInsane.TextSize = 20

  241. MegaInsane.TextWrapped = true

  242. ArmDetach.Name = "ArmDetach"

  243. ArmDetach.Parent = ScrollingFrame

  244. ArmDetach.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627)

  245. ArmDetach.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)

  246. ArmDetach.Position = UDim2.new(0, 319, 0, 192)

  247. ArmDetach.Size = UDim2.new(0, 119, 0, 34)

  248. ArmDetach.Font = Enum.Font.Highway

  249. ArmDetach.FontSize = Enum.FontSize.Size24

  250. ArmDetach.Text = "Arm Detach"

  251. ArmDetach.TextSize = 20

  252. ArmDetach.TextWrapped = true

  253. WeirdMove.Name = "WeirdMove"

  254. WeirdMove.Parent = ScrollingFrame

  255. WeirdMove.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627)

  256. WeirdMove.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)

  257. WeirdMove.Position = UDim2.new(0, 168, 0, 148)

  258. WeirdMove.Size = UDim2.new(0, 119, 0, 34)

  259. WeirdMove.Font = Enum.Font.Highway

  260. WeirdMove.FontSize = Enum.FontSize.Size24

  261. WeirdMove.Text = "Weird Move"

  262. WeirdMove.TextSize = 20

  263. WeirdMove.TextWrapped = true

  264. Faint.Name = "Faint"

  265. Faint.Parent = ScrollingFrame

  266. Faint.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627)

  267. Faint.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)

  268. Faint.Position = UDim2.new(0, 17, 0, 148)

  269. Faint.Size = UDim2.new(0, 119, 0, 34)

  270. Faint.Font = Enum.Font.Highway

  271. Faint.FontSize = Enum.FontSize.Size24

  272. Faint.Text = "Faint"

  273. Faint.TextSize = 20

  274. Faint.TextWrapped = true

  275. CloneIllusion.Name = "CloneIllusion"

  276. CloneIllusion.Parent = ScrollingFrame

  277. CloneIllusion.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627)

  278. CloneIllusion.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)

  279. CloneIllusion.Position = UDim2.new(0, 319, 0, 148)

  280. CloneIllusion.Size = UDim2.new(0, 119, 0, 34)

  281. CloneIllusion.Font = Enum.Font.Highway

  282. CloneIllusion.FontSize = Enum.FontSize.Size24

  283. CloneIllusion.Text = "Clone Illusion"

  284. CloneIllusion.TextSize = 20

  285. CloneIllusion.TextWrapped = true

  286. Levitate.Name = "Levitate"

  287. Levitate.Parent = ScrollingFrame

  288. Levitate.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627)

  289. Levitate.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)

  290. Levitate.Position = UDim2.new(0, 17, 0, 104)

  291. Levitate.Size = UDim2.new(0, 119, 0, 34)

  292. Levitate.Font = Enum.Font.Highway

  293. Levitate.FontSize = Enum.FontSize.Size24

  294. Levitate.Text = "Levitate"

  295. Levitate.TextSize = 20

  296. Levitate.TextWrapped = true

  297. DinoWalk.Name = "DinoWalk"

  298. DinoWalk.Parent = ScrollingFrame

  299. DinoWalk.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627)

  300. DinoWalk.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)

  301. DinoWalk.Position = UDim2.new(0, 168, 0, 104)

  302. DinoWalk.Size = UDim2.new(0, 119, 0, 34)

  303. DinoWalk.Font = Enum.Font.Highway

  304. DinoWalk.FontSize = Enum.FontSize.Size24

  305. DinoWalk.Text = "Dino Walk"

  306. DinoWalk.TextSize = 20

  307. DinoWalk.TextWrapped = true

  308. FloorCrawl.Name = "FloorCrawl"

  309. FloorCrawl.Parent = ScrollingFrame

  310. FloorCrawl.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627)

  311. FloorCrawl.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)

  312. FloorCrawl.Position = UDim2.new(0, 319, 0, 104)

  313. FloorCrawl.Size = UDim2.new(0, 119, 0, 34)

  314. FloorCrawl.Font = Enum.Font.Highway

  315. FloorCrawl.FontSize = Enum.FontSize.Size24

  316. FloorCrawl.Text = "Floor Crawl"

  317. FloorCrawl.TextSize = 20

  318. FloorCrawl.TextWrapped = true

  319. SwordSlam.Name = "SwordSlam"

  320. SwordSlam.Parent = ScrollingFrame

  321. SwordSlam.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627)

  322. SwordSlam.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)

  323. SwordSlam.Position = UDim2.new(0, 319, 0, 60)

  324. SwordSlam.Size = UDim2.new(0, 119, 0, 34)

  325. SwordSlam.Font = Enum.Font.Highway

  326. SwordSlam.FontSize = Enum.FontSize.Size24

  327. SwordSlam.Text = "Sword Slam"

  328. SwordSlam.TextSize = 20

  329. SwordSlam.TextWrapped = true

  330. LoopHead.Name = "LoopHead"

  331. LoopHead.Parent = ScrollingFrame

  332. LoopHead.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627)

  333. LoopHead.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)

  334. LoopHead.Position = UDim2.new(0, 168, 0, 60)

  335. LoopHead.Size = UDim2.new(0, 119, 0, 34)

  336. LoopHead.Font = Enum.Font.Highway

  337. LoopHead.FontSize = Enum.FontSize.Size24

  338. LoopHead.Text = "Loop Head"

  339. LoopHead.TextSize = 20

  340. LoopHead.TextWrapped = true

  341. HeroJump.Name = "HeroJump"

  342. HeroJump.Parent = ScrollingFrame

  343. HeroJump.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627)

  344. HeroJump.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)

  345. HeroJump.Position = UDim2.new(0, 17, 0, 60)

  346. HeroJump.Size = UDim2.new(0, 119, 0, 34)

  347. HeroJump.Font = Enum.Font.Highway

  348. HeroJump.FontSize = Enum.FontSize.Size24

  349. HeroJump.Text = "Hero Jump"

  350. HeroJump.TextSize = 20

  351. HeroJump.TextWrapped = true

  352. Insane.Name = "Insane"

  353. Insane.Parent = ScrollingFrame

  354. Insane.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627)

  355. Insane.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)

  356. Insane.Position = UDim2.new(0, 319, 0, 16)

  357. Insane.Size = UDim2.new(0, 119, 0, 34)

  358. Insane.Font = Enum.Font.Highway

  359. Insane.FontSize = Enum.FontSize.Size24

  360. Insane.Text = "Insane"

  361. Insane.TextSize = 20

  362. Insane.TextWrapped = true

  363. FloatingHead.Name = "FloatingHead"

  364. FloatingHead.Parent = ScrollingFrame

  365. FloatingHead.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627)

  366. FloatingHead.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)

  367. FloatingHead.Position = UDim2.new(0, 168, 0, 16)

  368. FloatingHead.Size = UDim2.new(0, 119, 0, 34)

  369. FloatingHead.Font = Enum.Font.Highway

  370. FloatingHead.FontSize = Enum.FontSize.Size24

  371. FloatingHead.Text = "Floating Head"

  372. FloatingHead.TextSize = 20

  373. FloatingHead.TextWrapped = true

  374. HeadThrow.Name = "HeadThrow"

  375. HeadThrow.Parent = ScrollingFrame

  376. HeadThrow.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627)

  377. HeadThrow.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)

  378. HeadThrow.Position = UDim2.new(0, 17, 0, 16)

  379. HeadThrow.Size = UDim2.new(0, 119, 0, 34)

  380. HeadThrow.Font = Enum.Font.Highway

  381. HeadThrow.FontSize = Enum.FontSize.Size24

  382. HeadThrow.Text = "Head Throw"

  383. HeadThrow.TextSize = 20

  384. HeadThrow.TextWrapped = true

  385. MovingDance.Name = "MovingDance"

  386. MovingDance.Parent = ScrollingFrame

  387. MovingDance.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627)

  388. MovingDance.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)

  389. MovingDance.Position = UDim2.new(0, 168, 0, 324)

  390. MovingDance.Size = UDim2.new(0, 119, 0, 34)

  391. MovingDance.Font = Enum.Font.Highway

  392. MovingDance.FontSize = Enum.FontSize.Size24

  393. MovingDance.Text = "Moving Dance"

  394. MovingDance.TextSize = 20

  395. MovingDance.TextWrapped = true

  396. SuperPunch.Name = "SuperPunch"

  397. SuperPunch.Parent = ScrollingFrame

  398. SuperPunch.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627)

  399. SuperPunch.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)

  400. SuperPunch.Position = UDim2.new(0, 168, 0, 366)

  401. SuperPunch.Size = UDim2.new(0, 119, 0, 34)

  402. SuperPunch.Font = Enum.Font.Highway

  403. SuperPunch.FontSize = Enum.FontSize.Size24

  404. SuperPunch.Text = "Super Punch"

  405. SuperPunch.TextSize = 20

  406. SuperPunch.TextWrapped = true

  407. ArmTurbine.Name = "ArmTurbine"

  408. ArmTurbine.Parent = ScrollingFrame

  409. ArmTurbine.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627)

  410. ArmTurbine.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)

  411. ArmTurbine.Position = UDim2.new(0, 319, 0, 366)

  412. ArmTurbine.Size = UDim2.new(0, 119, 0, 34)

  413. ArmTurbine.Font = Enum.Font.Highway

  414. ArmTurbine.FontSize = Enum.FontSize.Size24

  415. ArmTurbine.Text = "Arm Turbine"

  416. ArmTurbine.TextSize = 20

  417. ArmTurbine.TextWrapped = true

  418. Dab.Name = "Dab"

  419. Dab.Parent = ScrollingFrame

  420. Dab.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627)

  421. Dab.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)

  422. Dab.Position = UDim2.new(0, 17, 0, 366)

  423. Dab.Size = UDim2.new(0, 119, 0, 34)

  424. Dab.Font = Enum.Font.Highway

  425. Dab.FontSize = Enum.FontSize.Size24

  426. Dab.Text = "Dab"

  427. Dab.TextSize = 20

  428. Dab.TextWrapped = true

  429. FloatSit.Name = "FloatSit"

  430. FloatSit.Parent = ScrollingFrame

  431. FloatSit.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627)

  432. FloatSit.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)

  433. FloatSit.Position = UDim2.new(0, 168, 0, 410)

  434. FloatSit.Size = UDim2.new(0, 119, 0, 34)

  435. FloatSit.Font = Enum.Font.Highway

  436. FloatSit.FontSize = Enum.FontSize.Size24

  437. FloatSit.Text = "Float Sit"

  438. FloatSit.TextSize = 20

  439. FloatSit.TextWrapped = true

  440. SuperFaint.Name = "SuperFaint"

  441. SuperFaint.Parent = ScrollingFrame

  442. SuperFaint.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627)

  443. SuperFaint.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)

  444. SuperFaint.Position = UDim2.new(0, 17, 0, 498)

  445. SuperFaint.Size = UDim2.new(0, 119, 0, 34)

  446. SuperFaint.Font = Enum.Font.Highway

  447. SuperFaint.FontSize = Enum.FontSize.Size24

  448. SuperFaint.Text = "Super Faint"

  449. SuperFaint.TextSize = 20

  450. SuperFaint.TextWrapped = true

  451. BarrelRoll.Name = "BarrelRoll"

  452. BarrelRoll.Parent = ScrollingFrame

  453. BarrelRoll.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627)

  454. BarrelRoll.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)

  455. BarrelRoll.Position = UDim2.new(0, 319, 0, 410)

  456. BarrelRoll.Size = UDim2.new(0, 119, 0, 34)

  457. BarrelRoll.Font = Enum.Font.Highway

  458. BarrelRoll.FontSize = Enum.FontSize.Size24

  459. BarrelRoll.Text = "Barrel Roll"

  460. BarrelRoll.TextSize = 20

  461. BarrelRoll.TextWrapped = true

  462. Scared.Name = "Scared"

  463. Scared.Parent = ScrollingFrame

  464. Scared.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627)

  465. Scared.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)

  466. Scared.Position = UDim2.new(0, 319, 0, 454)

  467. Scared.Size = UDim2.new(0, 119, 0, 34)

  468. Scared.Font = Enum.Font.Highway

  469. Scared.FontSize = Enum.FontSize.Size24

  470. Scared.Text = "Scared"

  471. Scared.TextSize = 20

  472. Scared.TextWrapped = true

  473. InsaneArms.Name = "InsaneArms"

  474. InsaneArms.Parent = ScrollingFrame

  475. InsaneArms.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627)

  476. InsaneArms.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)

  477. InsaneArms.Position = UDim2.new(0, 17, 0, 454)

  478. InsaneArms.Size = UDim2.new(0, 119, 0, 34)

  479. InsaneArms.Font = Enum.Font.Highway

  480. InsaneArms.FontSize = Enum.FontSize.Size24

  481. InsaneArms.Text = "Insane Arms"

  482. InsaneArms.TextSize = 20

  483. InsaneArms.TextWrapped = true

  484. SwordSlice.Name = "SwordSlice"

  485. SwordSlice.Parent = ScrollingFrame

  486. SwordSlice.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627)

  487. SwordSlice.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)

  488. SwordSlice.Position = UDim2.new(0, 168, 0, 454)

  489. SwordSlice.Size = UDim2.new(0, 119, 0, 34)

  490. SwordSlice.Font = Enum.Font.Highway

  491. SwordSlice.FontSize = Enum.FontSize.Size24

  492. SwordSlice.Text = "Sword Slice"

  493. SwordSlice.TextSize = 20

  494. SwordSlice.TextWrapped = true

  495. SpinDance2.Name = "SpinDance2"

  496. SpinDance2.Parent = ScrollingFrame

  497. SpinDance2.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627)

  498. SpinDance2.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)

  499. SpinDance2.Position = UDim2.new(0, 168, 0, 498)

  500. SpinDance2.Size = UDim2.new(0, 119, 0, 34)

  501. SpinDance2.Font = Enum.Font.Highway

  502. SpinDance2.FontSize = Enum.FontSize.Size24

  503. SpinDance2.Text = "Spin Dance 2"

  504. SpinDance2.TextSize = 20

  505. SpinDance2.TextWrapped = true

  506. BowDown.Name = "BowDown"

  507. BowDown.Parent = ScrollingFrame

  508. BowDown.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627)

  509. BowDown.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)

  510. BowDown.Position = UDim2.new(0, 319, 0, 498)

  511. BowDown.Size = UDim2.new(0, 119, 0, 34)

  512. BowDown.Font = Enum.Font.Highway

  513. BowDown.FontSize = Enum.FontSize.Size24

  514. BowDown.Text = "Bow Down"

  515. BowDown.TextSize = 20

  516. BowDown.TextWrapped = true

  517. LoopSlam.Name = "LoopSlam"

  518. LoopSlam.Parent = ScrollingFrame

  519. LoopSlam.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627)

  520. LoopSlam.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)

  521. LoopSlam.Position = UDim2.new(0, 17, 0, 410)

  522. LoopSlam.Size = UDim2.new(0, 119, 0, 34)

  523. LoopSlam.Font = Enum.Font.Highway

  524. LoopSlam.FontSize = Enum.FontSize.Size24

  525. LoopSlam.Text = "Loop Slam"

  526. LoopSlam.TextSize = 20

  527. LoopSlam.TextWrapped = true

  528. GuiTopFrame.Name = "Gui TopFrame"

  529. GuiTopFrame.Parent = MainFrame

  530. GuiTopFrame.BackgroundColor3 = Color3.new(1, 0.329412, 0.329412)

  531. GuiTopFrame.BorderColor3 = Color3.new(0.243137, 0.243137, 0.243137)

  532. GuiTopFrame.Size = UDim2.new(0, 460, 0, 32)

  533. CloseGUI.Name = "CloseGUI"

  534. CloseGUI.Parent = GuiTopFrame

  535. CloseGUI.BackgroundColor3 = Color3.new(1, 1, 1)

  536. CloseGUI.BackgroundTransparency = 1

  537. CloseGUI.Position = UDim2.new(0, 426, 0, 0)

  538. CloseGUI.Size = UDim2.new(0, 34, 0, 32)

  539. CloseGUI.Font = Enum.Font.SourceSans

  540. CloseGUI.FontSize = Enum.FontSize.Size48

  541. CloseGUI.Text = "X"

  542. CloseGUI.TextColor3 = Color3.new(0.333333, 0, 0)

  543. CloseGUI.TextSize = 40

  544. CloseGUI.TextWrapped = true

  545. Title.Name = "Title"

  546. Title.Parent = GuiTopFrame

  547. Title.BackgroundColor3 = Color3.new(1, 1, 1)

  548. Title.BackgroundTransparency = 1

  549. Title.Size = UDim2.new(0, 460, 0, 32)

  550. Title.FontSize = Enum.FontSize.Size14

  551. Title.Text = "Energize"

  552. Title.TextColor3 = Color3.new(0.164706, 0.164706, 0.164706)

  553. Title.TextSize = 14

  554. Title.TextStrokeColor3 = Color3.new(0.384314, 0.917647, 1)

  555. Title.TextStrokeTransparency = 0.69999998807907

  556. Title.TextWrapped = true

  557. CheckR.Name = "CheckR"

  558. CheckR.Parent = GuiTopFrame

  559. CheckR.BackgroundColor3 = Color3.new(1, 1, 1)

  560. CheckR.BackgroundTransparency = 1

  561. CheckR.Size = UDim2.new(0, 171, 0, 32)

  562. CheckR.Font = Enum.Font.SourceSansBold

  563. CheckR.FontSize = Enum.FontSize.Size14

  564. CheckR.Text = "Text"

  565. CheckR.TextScaled = true

  566. CheckR.TextSize = 14

  567. CheckR.TextWrapped = true

  568. ScrollingFrameR15.Name = "ScrollingFrameR15"

  569. ScrollingFrameR15.Parent = MainFrame

  570. ScrollingFrameR15.BackgroundColor3 = Color3.new(1, 0.564706, 0.564706)

  571. ScrollingFrameR15.Position = UDim2.new(0, 0, 0, 32)

  572. ScrollingFrameR15.Size = UDim2.new(0, 460, 0, 215)

  573. ScrollingFrameR15.Visible = false

  574. ScrollingFrameR15.ScrollBarThickness = 13

  575. CrazySlash.Name = "CrazySlash"

  576. CrazySlash.Parent = ScrollingFrameR15

  577. CrazySlash.BackgroundColor3 = Color3.new(0.682353, 0.701961, 0.792157)

  578. CrazySlash.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)

  579. CrazySlash.Position = UDim2.new(0, 17, 0, 16)

  580. CrazySlash.Size = UDim2.new(0, 119, 0, 34)

  581. CrazySlash.Font = Enum.Font.Highway

  582. CrazySlash.FontSize = Enum.FontSize.Size24

  583. CrazySlash.Text = "CrazySlash"

  584. CrazySlash.TextSize = 20

  585. CrazySlash.TextWrapped = true

  586. Open.Name = "Open"

  587. Open.Parent = ScrollingFrameR15

  588. Open.BackgroundColor3 = Color3.new(0.682353, 0.701961, 0.792157)

  589. Open.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)

  590. Open.Position = UDim2.new(0, 168, 0, 16)

  591. Open.Size = UDim2.new(0, 119, 0, 34)

  592. Open.Font = Enum.Font.Highway

  593. Open.FontSize = Enum.FontSize.Size24

  594. Open.Text = "Open"

  595. Open.TextSize = 20

  596. Open.TextWrapped = true

  597. R15Spinner.Name = "R15Spinner"

  598. R15Spinner.Parent = ScrollingFrameR15

  599. R15Spinner.BackgroundColor3 = Color3.new(0.682353, 0.701961, 0.792157)

  600. R15Spinner.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)

  601. R15Spinner.Position = UDim2.new(0, 17, 0, 60)

  602. R15Spinner.Size = UDim2.new(0, 119, 0, 34)

  603. R15Spinner.Font = Enum.Font.Highway

  604. R15Spinner.FontSize = Enum.FontSize.Size24

  605. R15Spinner.Text = "Spinner"

  606. R15Spinner.TextSize = 20

  607. R15Spinner.TextWrapped = true

  608. ArmsOut.Name = "ArmsOut"

  609. ArmsOut.Parent = ScrollingFrameR15

  610. ArmsOut.BackgroundColor3 = Color3.new(0.682353, 0.701961, 0.792157)

  611. ArmsOut.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)

  612. ArmsOut.Position = UDim2.new(0, 319, 0, 16)

  613. ArmsOut.Size = UDim2.new(0, 119, 0, 34)

  614. ArmsOut.Font = Enum.Font.Highway

  615. ArmsOut.FontSize = Enum.FontSize.Size24

  616. ArmsOut.Text = "ArmsOut"

  617. ArmsOut.TextSize = 20

  618. ArmsOut.TextWrapped = true

  619. FloatSlash.Name = "FloatSlash"

  620. FloatSlash.Parent = ScrollingFrameR15

  621. FloatSlash.BackgroundColor3 = Color3.new(0.682353, 0.701961, 0.792157)

  622. FloatSlash.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)

  623. FloatSlash.Position = UDim2.new(0, 168, 0, 148)

  624. FloatSlash.Size = UDim2.new(0, 119, 0, 34)

  625. FloatSlash.Font = Enum.Font.Highway

  626. FloatSlash.FontSize = Enum.FontSize.Size24

  627. FloatSlash.Text = "FloatSlash"

  628. FloatSlash.TextSize = 20

  629. FloatSlash.TextWrapped = true

  630. WeirdZombie.Name = "WeirdZombie"

  631. WeirdZombie.Parent = ScrollingFrameR15

  632. WeirdZombie.BackgroundColor3 = Color3.new(0.682353, 0.701961, 0.792157)

  633. WeirdZombie.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)

  634. WeirdZombie.Position = UDim2.new(0, 17, 0, 148)

  635. WeirdZombie.Size = UDim2.new(0, 119, 0, 34)

  636. WeirdZombie.Font = Enum.Font.Highway

  637. WeirdZombie.FontSize = Enum.FontSize.Size24

  638. WeirdZombie.Text = "WeirdZombie"

  639. WeirdZombie.TextSize = 20

  640. WeirdZombie.TextWrapped = true

  641. DownSlash.Name = "DownSlash"

  642. DownSlash.Parent = ScrollingFrameR15

  643. DownSlash.BackgroundColor3 = Color3.new(0.682353, 0.701961, 0.792157)

  644. DownSlash.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)

  645. DownSlash.Position = UDim2.new(0, 319, 0, 148)

  646. DownSlash.Size = UDim2.new(0, 119, 0, 34)

  647. DownSlash.Font = Enum.Font.Highway

  648. DownSlash.FontSize = Enum.FontSize.Size24

  649. DownSlash.Text = "DownSlash"

  650. DownSlash.TextSize = 20

  651. DownSlash.TextWrapped = true

  652. Pull.Name = "Pull"

  653. Pull.Parent = ScrollingFrameR15

  654. Pull.BackgroundColor3 = Color3.new(0.682353, 0.701961, 0.792157)

  655. Pull.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)

  656. Pull.Position = UDim2.new(0, 17, 0, 104)

  657. Pull.Size = UDim2.new(0, 119, 0, 34)

  658. Pull.Font = Enum.Font.Highway

  659. Pull.FontSize = Enum.FontSize.Size24

  660. Pull.Text = "Pull"

  661. Pull.TextSize = 20

  662. Pull.TextWrapped = true

  663. CircleArm.Name = "CircleArm"

  664. CircleArm.Parent = ScrollingFrameR15

  665. CircleArm.BackgroundColor3 = Color3.new(0.682353, 0.701961, 0.792157)

  666. CircleArm.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)

  667. CircleArm.Position = UDim2.new(0, 168, 0, 104)

  668. CircleArm.Size = UDim2.new(0, 119, 0, 34)

  669. CircleArm.Font = Enum.Font.Highway

  670. CircleArm.FontSize = Enum.FontSize.Size24

  671. CircleArm.Text = "CircleArm"

  672. CircleArm.TextSize = 20

  673. CircleArm.TextWrapped = true

  674. Bend.Name = "Bend"

  675. Bend.Parent = ScrollingFrameR15

  676. Bend.BackgroundColor3 = Color3.new(0.682353, 0.701961, 0.792157)

  677. Bend.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)

  678. Bend.Position = UDim2.new(0, 319, 0, 104)

  679. Bend.Size = UDim2.new(0, 119, 0, 34)

  680. Bend.Font = Enum.Font.Highway

  681. Bend.FontSize = Enum.FontSize.Size24

  682. Bend.Text = "Bend"

  683. Bend.TextSize = 20

  684. Bend.TextWrapped = true

  685. RotateSlash.Name = "RotateSlash"

  686. RotateSlash.Parent = ScrollingFrameR15

  687. RotateSlash.BackgroundColor3 = Color3.new(0.682353, 0.701961, 0.792157)

  688. RotateSlash.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)

  689. RotateSlash.Position = UDim2.new(0, 319, 0, 60)

  690. RotateSlash.Size = UDim2.new(0, 119, 0, 34)

  691. RotateSlash.Font = Enum.Font.Highway

  692. RotateSlash.FontSize = Enum.FontSize.Size24

  693. RotateSlash.Text = "RotateSlash"

  694. RotateSlash.TextSize = 20

  695. RotateSlash.TextWrapped = true

  696. FlingArms.Name = "FlingArms"

  697. FlingArms.Parent = ScrollingFrameR15

  698. FlingArms.BackgroundColor3 = Color3.new(0.682353, 0.701961, 0.792157)

  699. FlingArms.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)

  700. FlingArms.Position = UDim2.new(0, 168, 0, 60)

  701. FlingArms.Size = UDim2.new(0, 119, 0, 34)

  702. FlingArms.Font = Enum.Font.Highway

  703. FlingArms.FontSize = Enum.FontSize.Size24

  704. FlingArms.Text = "FlingArms"

  705. FlingArms.TextSize = 20

  706. FlingArms.TextWrapped = true

  707. -- Buttons

  708. col = Color3.new(0.886275, 0.776471, 0.368627)

  709. loc = Color3.new(1, 0.906471, 0.568627)

  710. rcol = Color3.new(0.682353, 0.701961, 0.792157)

  711. rloc = Color3.new(0.882353, 0.901961, 0.992157)

  712. CloseGUI.MouseButton1Click:connect(function()

  713. MainFrame.Visible = false

  714. SideFrame.Visible = true

  715. SideFrame.Position = MainFrame.Position

  716. end)

  717. OpenGUI.MouseButton1Click:connect(function()

  718. MainFrame.Visible = true

  719. SideFrame.Visible = false

  720. MainFrame.Position = SideFrame.Position

  721. end)

  722. if (game:GetService"Players".LocalPlayer.Character:WaitForChild("Humanoid").RigType == Enum.HumanoidRigType.R15) then

  723. ScrollingFrame.Visible = false

  724. ScrollingFrameR15.Visible = true

  725. CheckR.Text = "Showing R15 Animations"

  726. else

  727. ScrollingFrame.Visible = true

  728. ScrollingFrameR15.Visible = false

  729. CheckR.Text = "Showing R6 Animations"

  730. end

  731. local Anim = Instance.new("Animation")

  732. Anim.AnimationId = "rbxassetid://35154961"

  733. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)

  734. local HeadThrowACTIVE = false

  735. HeadThrow.MouseButton1Click:connect(function()

  736. HeadThrowACTIVE = not HeadThrowACTIVE

  737. if HeadThrowACTIVE then

  738. HeadThrow.BackgroundColor3 = loc

  739. while wait() do

  740. if track.IsPlaying == false then

  741. if HeadThrowACTIVE then

  742. track:Play(.1, 1, 1)

  743. end

  744. end

  745. end

  746. else

  747. track:Stop()

  748. HeadThrow.BackgroundColor3 = col

  749. end

  750. end)

  751. local Anim = Instance.new("Animation")

  752. Anim.AnimationId = "rbxassetid://121572214"

  753. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)

  754. local FloatingHeadACTIVE = false

  755. FloatingHead.MouseButton1Click:connect(function()

  756. FloatingHeadACTIVE = not FloatingHeadACTIVE

  757. if FloatingHeadACTIVE then

  758. track:Play(.1, 1, 1)

  759. FloatingHead.BackgroundColor3 = loc

  760. else

  761. track:Stop()

  762. FloatingHead.BackgroundColor3 = col

  763. end

  764. end)

  765. local Anim = Instance.new("Animation")

  766. Anim.AnimationId = "rbxassetid://182724289"

  767. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)

  768. local CrouchACTIVE = false

  769. Crouch.MouseButton1Click:connect(function()

  770. CrouchACTIVE = not CrouchACTIVE

  771. if CrouchACTIVE then

  772. track:Play(.1, 1, 1)

  773. Crouch.BackgroundColor3 = loc

  774. else

  775. track:Stop()

  776. Crouch.BackgroundColor3 = col

  777. end

  778. end)

  779. local Anim = Instance.new("Animation")

  780. Anim.AnimationId = "rbxassetid://282574440"

  781. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)

  782. local FloorCrawlACTIVE = false

  783. FloorCrawl.MouseButton1Click:connect(function()

  784. FloorCrawlACTIVE = not FloorCrawlACTIVE

  785. if FloorCrawlACTIVE then

  786. track:Play(.1, 1, 1)

  787. FloorCrawl.BackgroundColor3 = loc

  788. else

  789. track:Stop()

  790. FloorCrawl.BackgroundColor3 = col

  791. end

  792. end)

  793. local Anim = Instance.new("Animation")

  794. Anim.AnimationId = "rbxassetid://204328711"

  795. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)

  796. local DinoWalkACTIVE = false

  797. DinoWalk.MouseButton1Click:connect(function()

  798. DinoWalkACTIVE = not DinoWalkACTIVE

  799. if DinoWalkACTIVE then

  800. track:Play(.1, 1, 1)

  801. DinoWalk.BackgroundColor3 = loc

  802. else

  803. track:Stop()

  804. DinoWalk.BackgroundColor3 = col

  805. end

  806. end)

  807. local Anim = Instance.new("Animation")

  808. Anim.AnimationId = "rbxassetid://429681631"

  809. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)

  810. local JumpingJacksACTIVE = false

  811. JumpingJacks.MouseButton1Click:connect(function()

  812. JumpingJacksACTIVE = not JumpingJacksACTIVE

  813. if JumpingJacksACTIVE then

  814. track:Play(.1, 1, 1)

  815. JumpingJacks.BackgroundColor3 = loc

  816. else

  817. track:Stop()

  818. JumpingJacks.BackgroundColor3 = col

  819. end

  820. end)

  821. local Anim = Instance.new("Animation")

  822. Anim.AnimationId = "rbxassetid://35154961"

  823. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)

  824. local LoopHeadACTIVE = false

  825. LoopHead.MouseButton1Click:connect(function()

  826. LoopHeadACTIVE = not LoopHeadACTIVE

  827. if LoopHeadACTIVE then

  828. LoopHead.BackgroundColor3 = loc

  829. while wait() do

  830. if track.IsPlaying == false then

  831. if LoopHeadACTIVE then

  832. track:Play(.5, 1, 1e6)

  833. end

  834. end

  835. end

  836. else

  837. track:Stop()

  838. LoopHead.BackgroundColor3 = col

  839. end

  840. end)

  841. local Anim = Instance.new("Animation")

  842. Anim.AnimationId = "rbxassetid://184574340"

  843. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)

  844. local HeroJumpACTIVE = false

  845. HeroJump.MouseButton1Click:connect(function()

  846. HeroJumpACTIVE = not HeroJumpACTIVE

  847. if HeroJumpACTIVE then

  848. HeroJump.BackgroundColor3 = loc

  849. while wait() do

  850. if track.IsPlaying == false then

  851. if HeroJumpACTIVE then

  852. track:Play(.1, 1, 1)

  853. end

  854. end

  855. end

  856. else

  857. track:Stop()

  858. HeroJump.BackgroundColor3 = col

  859. end

  860. end)

  861. local Anim = Instance.new("Animation")

  862. Anim.AnimationId = "rbxassetid://181526230"

  863. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)

  864. local FaintACTIVE = false

  865. Faint.MouseButton1Click:connect(function()

  866. FaintACTIVE = not FaintACTIVE

  867. if FaintACTIVE then

  868. track:Play(.1, 1, 1)

  869. Faint.BackgroundColor3 = loc

  870. else

  871. track:Stop()

  872. Faint.BackgroundColor3 = col

  873. end

  874. end)

  875. local Anim = Instance.new("Animation")

  876. Anim.AnimationId = "rbxassetid://181525546"

  877. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)

  878. local FloorFaintACTIVE = false

  879. FloorFaint.MouseButton1Click:connect(function()

  880. FloorFaintACTIVE = not FloorFaintACTIVE

  881. if FloorFaintACTIVE then

  882. FloorFaint.BackgroundColor3 = loc

  883. while wait() do

  884. if track.IsPlaying == false then

  885. if FloorFaintACTIVE then

  886. track:Play(.1, 1, 2)

  887. end

  888. end

  889. end

  890. else

  891. track:Stop()

  892. FloorFaint.BackgroundColor3 = col

  893. end

  894. end)

  895. local Anim = Instance.new("Animation")

  896. Anim.AnimationId = "rbxassetid://181525546"

  897. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)

  898. local SuperFaintACTIVE = false

  899. SuperFaint.MouseButton1Click:connect(function()

  900. SuperFaintACTIVE = not SuperFaintACTIVE

  901. if SuperFaintACTIVE then

  902. SuperFaint.BackgroundColor3 = loc

  903. while wait() do

  904. if track.IsPlaying == false then

  905. if SuperFaintACTIVE then

  906. track:Play(.1, 0.5, 40)

  907. end

  908. end

  909. end

  910. else

  911. track:Stop()

  912. SuperFaint.BackgroundColor3 = col

  913. end

  914. end)

  915. local Anim = Instance.new("Animation")

  916. Anim.AnimationId = "rbxassetid://313762630"

  917. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)

  918. local LevitateACTIVE = false

  919. Levitate.MouseButton1Click:connect(function()

  920. LevitateACTIVE = not LevitateACTIVE

  921. if LevitateACTIVE then

  922. track:Play(.1, 1, 1)

  923. Levitate.BackgroundColor3 = loc

  924. else

  925. track:Stop()

  926. Levitate.BackgroundColor3 = col

  927. end

  928. end)

  929. local Anim = Instance.new("Animation")

  930. Anim.AnimationId = "rbxassetid://183412246"

  931. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)

  932. local DabACTIVE = false

  933. Dab.MouseButton1Click:connect(function()

  934. DabACTIVE = not DabACTIVE

  935. if DabACTIVE then

  936. Dab.BackgroundColor3 = loc

  937. while wait() do

  938. if track.IsPlaying == false then

  939. if DabACTIVE then

  940. track:Play(.1, 1, 1)

  941. end

  942. end

  943. end

  944. else

  945. track:Stop()

  946. Dab.BackgroundColor3 = col

  947. end

  948. end)

  949. local Anim = Instance.new("Animation")

  950. Anim.AnimationId = "rbxassetid://188632011"

  951. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)

  952. local SpinACTIVE = false

  953. Spinner.MouseButton1Click:connect(function()

  954. SpinACTIVE = not SpinACTIVE

  955. if SpinACTIVE then

  956. Spinner.BackgroundColor3 = loc

  957. while wait() do

  958. if track.IsPlaying == false then

  959. if SpinACTIVE then

  960. track:Play(.1, 1, 2)

  961. end

  962. end

  963. end

  964. else

  965. track:Stop()

  966. Spinner.BackgroundColor3 = col

  967. end

  968. end)

  969. local Anim = Instance.new("Animation")

  970. Anim.AnimationId = "rbxassetid://179224234"

  971. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)

  972. local FloatSitACTIVE = false

  973. FloatSit.MouseButton1Click:connect(function()

  974. FloatSitACTIVE = not FloatSitACTIVE

  975. if FloatSitACTIVE then

  976. track:Play(.1, 1, 1)

  977. FloatSit.BackgroundColor3 = loc

  978. else

  979. track:Stop()

  980. FloatSit.BackgroundColor3 = col

  981. end

  982. end)

  983. local Anim = Instance.new("Animation")

  984. Anim.AnimationId = "rbxassetid://429703734"

  985. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)

  986. local MovingDanceACTIVE = false

  987. MovingDance.MouseButton1Click:connect(function()

  988. MovingDanceACTIVE = not MovingDanceACTIVE

  989. if MovingDanceACTIVE then

  990. MovingDance.BackgroundColor3 = loc

  991. while wait() do

  992. if track.IsPlaying == false then

  993. if MovingDanceACTIVE then

  994. track:Play(.1, 1, 1)

  995. end

  996. end

  997. end

  998. else

  999. track:Stop()

  1000. MovingDance.BackgroundColor3 = col

  1001. end

  1002. end)

  1003. local Anim = Instance.new("Animation")

  1004. Anim.AnimationId = "rbxassetid://215384594"

  1005. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)

  1006. local WeirdMoveACTIVE = false

  1007. WeirdMove.MouseButton1Click:connect(function()

  1008. WeirdMoveACTIVE = not WeirdMoveACTIVE

  1009. if WeirdMoveACTIVE then

  1010. track:Play(.1, 1, 1)

  1011. WeirdMove.BackgroundColor3 = loc

  1012. else

  1013. track:Stop()

  1014. WeirdMove.BackgroundColor3 = col

  1015. end

  1016. end)

  1017. local Anim = Instance.new("Animation")

  1018. Anim.AnimationId = "rbxassetid://215384594"

  1019. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)

  1020. local CloneIllusionACTIVE = false

  1021. CloneIllusion.MouseButton1Click:connect(function()

  1022. CloneIllusionACTIVE = not CloneIllusionACTIVE

  1023. if CloneIllusionACTIVE then

  1024. track:Play(.5, 1, 1e7)

  1025. CloneIllusion.BackgroundColor3 = loc

  1026. else

  1027. track:Stop()

  1028. CloneIllusion.BackgroundColor3 = col

  1029. end

  1030. end)

  1031. local Anim = Instance.new("Animation")

  1032. Anim.AnimationId = "rbxassetid://313762630"

  1033. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)

  1034. local GlitchLevitateACTIVE = false

  1035. GlitchLevitate.MouseButton1Click:connect(function()

  1036. GlitchLevitateACTIVE = not GlitchLevitateACTIVE

  1037. if GlitchLevitateACTIVE then

  1038. track:Play(.5, 1, 1e7)

  1039. GlitchLevitate.BackgroundColor3 = loc

  1040. else

  1041. track:Stop()

  1042. GlitchLevitate.BackgroundColor3 = col

  1043. end

  1044. end)

  1045. local Anim = Instance.new("Animation")

  1046. Anim.AnimationId = "rbxassetid://429730430"

  1047. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)

  1048. local SpinDanceACTIVE = false

  1049. SpinDance.MouseButton1Click:connect(function()

  1050. SpinDanceACTIVE = not SpinDanceACTIVE

  1051. if SpinDanceACTIVE then

  1052. SpinDance.BackgroundColor3 = loc

  1053. while wait() do

  1054. if track.IsPlaying == false then

  1055. if SpinDanceACTIVE then

  1056. track:Play(.1, 1, 1)

  1057. end

  1058. end

  1059. end

  1060. else

  1061. track:Stop()

  1062. SpinDance.BackgroundColor3 = col

  1063. end

  1064. end)

  1065. local Anim = Instance.new("Animation")

  1066. Anim.AnimationId = "rbxassetid://45834924"

  1067. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)

  1068. local MoonDanceACTIVE = false

  1069. MoonDance.MouseButton1Click:connect(function()

  1070. MoonDanceACTIVE = not MoonDanceACTIVE

  1071. if MoonDanceACTIVE then

  1072. MoonDance.BackgroundColor3 = loc

  1073. while wait() do

  1074. if track.IsPlaying == false then

  1075. if MoonDanceACTIVE then

  1076. track:Play(.1, 1, 1)

  1077. end

  1078. end

  1079. end

  1080. else

  1081. track:Stop()

  1082. MoonDance.BackgroundColor3 = col

  1083. end

  1084. end)

  1085. local Anim = Instance.new("Animation")

  1086. Anim.AnimationId = "rbxassetid://204062532"

  1087. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)

  1088. local FullPunchACTIVE = false

  1089. FullPunch.MouseButton1Click:connect(function()

  1090. FullPunchACTIVE = not FullPunchACTIVE

  1091. if FullPunchACTIVE then

  1092. FullPunch.BackgroundColor3 = loc

  1093. while wait() do

  1094. if track.IsPlaying == false then

  1095. if FullPunchACTIVE then

  1096. track:Play(.1, 1, 1)

  1097. end

  1098. end

  1099. end

  1100. else

  1101. track:Stop()

  1102. FullPunch.BackgroundColor3 = col

  1103. end

  1104. end)

  1105. local Anim = Instance.new("Animation")

  1106. Anim.AnimationId = "rbxassetid://186934910"

  1107. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)

  1108. local SpinDance2ACTIVE = false

  1109. SpinDance2.MouseButton1Click:connect(function()

  1110. SpinDance2ACTIVE = not SpinDance2ACTIVE

  1111. if SpinDance2ACTIVE then

  1112. SpinDance2.BackgroundColor3 = loc

  1113. while wait() do

  1114. if track.IsPlaying == false then

  1115. if SpinDance2ACTIVE then

  1116. track:Play(.1, 1, 1)

  1117. end

  1118. end

  1119. end

  1120. else

  1121. track:Stop()

  1122. SpinDance2.BackgroundColor3 = col

  1123. end

  1124. end)

  1125. local Anim = Instance.new("Animation")

  1126. Anim.AnimationId = "rbxassetid://204292303"

  1127. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)

  1128. local BowDownACTIVE = false

  1129. BowDown.MouseButton1Click:connect(function()

  1130. BowDownACTIVE = not BowDownACTIVE

  1131. if BowDownACTIVE then

  1132. BowDown.BackgroundColor3 = loc

  1133. while wait() do

  1134. if track.IsPlaying == false then

  1135. if BowDownACTIVE then

  1136. track:Play(.1, 1, 3)

  1137. end

  1138. end

  1139. end

  1140. else

  1141. track:Stop()

  1142. BowDown.BackgroundColor3 = col

  1143. end

  1144. end)

  1145. local Anim = Instance.new("Animation")

  1146. Anim.AnimationId = "rbxassetid://204295235"

  1147. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)

  1148. local SwordSlamACTIVE = false

  1149. SwordSlam.MouseButton1Click:connect(function()

  1150. SwordSlamACTIVE = not SwordSlamACTIVE

  1151. if SwordSlamACTIVE then

  1152. SwordSlam.BackgroundColor3 = loc

  1153. while wait() do

  1154. if track.IsPlaying == false then

  1155. if SwordSlamACTIVE then

  1156. track:Play(.1, 1, 1)

  1157. end

  1158. end

  1159. end

  1160. else

  1161. track:Stop()

  1162. SwordSlam.BackgroundColor3 = col

  1163. end

  1164. end)

  1165. local Anim = Instance.new("Animation")

  1166. Anim.AnimationId = "rbxassetid://204295235"

  1167. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)

  1168. local LoopSlamACTIVE = false

  1169. LoopSlam.MouseButton1Click:connect(function()

  1170. LoopSlamACTIVE = not LoopSlamACTIVE

  1171. if LoopSlamACTIVE then

  1172. LoopSlam.BackgroundColor3 = loc

  1173. while wait() do

  1174. if track.IsPlaying == false then

  1175. if LoopSlamACTIVE then

  1176. track:Play(.1, 1, 1e4)

  1177. end

  1178. end

  1179. end

  1180. else

  1181. track:Stop()

  1182. LoopSlam.BackgroundColor3 = col

  1183. end

  1184. end)

  1185. local Anim = Instance.new("Animation")

  1186. Anim.AnimationId = "rbxassetid://184574340"

  1187. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)

  1188. local MegaInsaneACTIVE = false

  1189. MegaInsane.MouseButton1Click:connect(function()

  1190. MegaInsaneACTIVE = not MegaInsaneACTIVE

  1191. if MegaInsaneACTIVE then

  1192. MegaInsane.BackgroundColor3 = loc

  1193. while wait() do

  1194. if track.IsPlaying == false then

  1195. if MegaInsaneACTIVE then

  1196. track:Play(.1, 0.5, 40)

  1197. end

  1198. end

  1199. end

  1200. else

  1201. track:Stop()

  1202. MegaInsane.BackgroundColor3 = col

  1203. end

  1204. end)

  1205. local Anim = Instance.new("Animation")

  1206. Anim.AnimationId = "rbxassetid://126753849"

  1207. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)

  1208. local SuperPunchACTIVE = false

  1209. SuperPunch.MouseButton1Click:connect(function()

  1210. SuperPunchACTIVE = not SuperPunchACTIVE

  1211. if SuperPunchACTIVE then

  1212. SuperPunch.BackgroundColor3 = loc

  1213. while wait() do

  1214. if track.IsPlaying == false then

  1215. if SuperPunchACTIVE then

  1216. track:Play(.1, 1, 3)

  1217. end

  1218. end

  1219. end

  1220. else

  1221. track:Stop()

  1222. SuperPunch.BackgroundColor3 = col

  1223. end

  1224. end)

  1225. local Anim = Instance.new("Animation")

  1226. Anim.AnimationId = "rbxassetid://218504594"

  1227. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)

  1228. local FullSwingACTIVE = false

  1229. FullSwing.MouseButton1Click:connect(function()

  1230. FullSwingACTIVE = not FullSwingACTIVE

  1231. if FullSwingACTIVE then

  1232. FullSwing.BackgroundColor3 = loc

  1233. while wait() do

  1234. if track.IsPlaying == false then

  1235. if FullSwingACTIVE then

  1236. track:Play(.1, 1, 1)

  1237. end

  1238. end

  1239. end

  1240. else

  1241. track:Stop()

  1242. FullSwing.BackgroundColor3 = col

  1243. end

  1244. end)

  1245. local Anim = Instance.new("Animation")

  1246. Anim.AnimationId = "rbxassetid://259438880"

  1247. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)

  1248. local ArmTurbineACTIVE = false

  1249. ArmTurbine.MouseButton1Click:connect(function()

  1250. ArmTurbineACTIVE = not ArmTurbineACTIVE

  1251. if ArmTurbineACTIVE then

  1252. track:Play(.1, 1, 1e3)

  1253. ArmTurbine.BackgroundColor3 = loc

  1254. else

  1255. track:Stop()

  1256. ArmTurbine.BackgroundColor3 = col

  1257. end

  1258. end)

  1259. local Anim = Instance.new("Animation")

  1260. Anim.AnimationId = "rbxassetid://136801964"

  1261. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)

  1262. local BarrelRollACTIVE = false

  1263. BarrelRoll.MouseButton1Click:connect(function()

  1264. BarrelRollACTIVE = not BarrelRollACTIVE

  1265. if BarrelRollACTIVE then

  1266. BarrelRoll.BackgroundColor3 = loc

  1267. while wait() do

  1268. if track.IsPlaying == false then

  1269. if BarrelRollACTIVE then

  1270. track:Play(.1, 1, 1)

  1271. end

  1272. end

  1273. end

  1274. else

  1275. track:Stop()

  1276. BarrelRoll.BackgroundColor3 = col

  1277. end

  1278. end)

  1279. local Anim = Instance.new("Animation")

  1280. Anim.AnimationId = "rbxassetid://180612465"

  1281. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)

  1282. local ScaredACTIVE = false

  1283. Scared.MouseButton1Click:connect(function()

  1284. ScaredACTIVE = not ScaredACTIVE

  1285. if ScaredACTIVE then

  1286. Scared.BackgroundColor3 = loc

  1287. while wait() do

  1288. if track.IsPlaying == false then

  1289. if ScaredACTIVE then

  1290. track:Play(.1, 1, 1)

  1291. end

  1292. end

  1293. end

  1294. else

  1295. track:Stop()

  1296. Scared.BackgroundColor3 = col

  1297. end

  1298. end)

  1299. local Anim = Instance.new("Animation")

  1300. Anim.AnimationId = "rbxassetid://33796059"

  1301. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)

  1302. local InsaneACTIVE = false

  1303. Insane.MouseButton1Click:connect(function()

  1304. InsaneACTIVE = not InsaneACTIVE

  1305. if InsaneACTIVE then

  1306. track:Play(.1, 1, 1e8)

  1307. Insane.BackgroundColor3 = loc

  1308. else

  1309. track:Stop()

  1310. Insane.BackgroundColor3 = col

  1311. end

  1312. end)

  1313. local Anim = Instance.new("Animation")

  1314. Anim.AnimationId = "rbxassetid://33169583"

  1315. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)

  1316. local ArmDetachACTIVE = false

  1317. ArmDetach.MouseButton1Click:connect(function()

  1318. ArmDetachACTIVE = not ArmDetachACTIVE

  1319. if ArmDetachACTIVE then

  1320. ArmDetach.BackgroundColor3 = loc

  1321. while wait() do

  1322. if track.IsPlaying == false then

  1323. if ArmDetachACTIVE then

  1324. track:Play(.1, 1, 1e6)

  1325. end

  1326. end

  1327. end

  1328. else

  1329. track:Stop()

  1330. ArmDetach.BackgroundColor3 = col

  1331. end

  1332. end)

  1333. local Anim = Instance.new("Animation")

  1334. Anim.AnimationId = "rbxassetid://35978879"

  1335. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)

  1336. local SwordSliceACTIVE = false

  1337. SwordSlice.MouseButton1Click:connect(function()

  1338. SwordSliceACTIVE = not SwordSliceACTIVE

  1339. if SwordSliceACTIVE then

  1340. track:Play(.1, 1, 1)

  1341. SwordSlice.BackgroundColor3 = loc

  1342. else

  1343. track:Stop()

  1344. SwordSlice.BackgroundColor3 = col

  1345. end

  1346. end)

  1347. local Anim = Instance.new("Animation")

  1348. Anim.AnimationId = "rbxassetid://27432691"

  1349. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)

  1350. local InsaneArmsACTIVE = false

  1351. InsaneArms.MouseButton1Click:connect(function()

  1352. InsaneArmsACTIVE = not InsaneArmsACTIVE

  1353. if InsaneArmsACTIVE then

  1354. InsaneArms.BackgroundColor3 = loc

  1355. while wait() do

  1356. if track.IsPlaying == false then

  1357. if InsaneArmsACTIVE then

  1358. track:Play(.1, 1, 1e4)

  1359. end

  1360. end

  1361. end

  1362. else

  1363. track:Stop()

  1364. InsaneArms.BackgroundColor3 = col

  1365. end

  1366. end)

  1367. -- R15

  1368. local Anim = Instance.new("Animation")

  1369. Anim.AnimationId = "rbxassetid://674871189"

  1370. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)

  1371. local CrazySlashACTIVE = false

  1372. CrazySlash.MouseButton1Click:connect(function()

  1373. CrazySlashACTIVE = not CrazySlashACTIVE

  1374. if CrazySlashACTIVE then

  1375. CrazySlash.BackgroundColor3 = rloc

  1376. while wait() do

  1377. if track.IsPlaying == false then

  1378. if CrazySlashACTIVE then

  1379. track:Play(.1, 1, 1)

  1380. end

  1381. end

  1382. end

  1383. else

  1384. track:Stop()

  1385. CrazySlash.BackgroundColor3 = rcol

  1386. end

  1387. end)

  1388. local Anim = Instance.new("Animation")

  1389. Anim.AnimationId = "rbxassetid://582855105"

  1390. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)

  1391. local OpenACTIVE = false

  1392. Open.MouseButton1Click:connect(function()

  1393. OpenACTIVE = not OpenACTIVE

  1394. if OpenACTIVE then

  1395. Open.BackgroundColor3 = rloc

  1396. while wait() do

  1397. if track.IsPlaying == false then

  1398. if OpenACTIVE then

  1399. track:Play(.1, 1, 1)

  1400. end

  1401. end

  1402. end

  1403. else

  1404. track:Stop()

  1405. Open.BackgroundColor3 = rcol

  1406. end

  1407. end)

  1408. local Anim = Instance.new("Animation")

  1409. Anim.AnimationId = "rbxassetid://754658275"

  1410. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)

  1411. local R15SpinnerACTIVE = false

  1412. R15Spinner.MouseButton1Click:connect(function()

  1413. R15SpinnerACTIVE = not R15SpinnerACTIVE

  1414. if R15SpinnerACTIVE then

  1415. R15Spinner.BackgroundColor3 = rloc

  1416. while wait() do

  1417. if track.IsPlaying == false then

  1418. if R15SpinnerACTIVE then

  1419. track:Play(.1, 1, 1)

  1420. end

  1421. end

  1422. end

  1423. else

  1424. track:Stop()

  1425. R15Spinner.BackgroundColor3 = rcol

  1426. end

  1427. end)

  1428. local Anim = Instance.new("Animation")

  1429. Anim.AnimationId = "rbxassetid://582384156"

  1430. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)

  1431. local ArmsOutACTIVE = false

  1432. ArmsOut.MouseButton1Click:connect(function()

  1433. ArmsOutACTIVE = not ArmsOutACTIVE

  1434. if ArmsOutACTIVE then

  1435. ArmsOut.BackgroundColor3 = rloc

  1436. while wait() do

  1437. if track.IsPlaying == false then

  1438. if ArmsOutACTIVE then

  1439. track:Play(.1, 1, 1)

  1440. end

  1441. end

  1442. end

  1443. else

  1444. track:Stop()

  1445. ArmsOut.BackgroundColor3 = rcol

  1446. end

  1447. end)

  1448. local Anim = Instance.new("Animation")

  1449. Anim.AnimationId = "rbxassetid://717879555"

  1450. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)

  1451. local FloatSlashACTIVE = false

  1452. FloatSlash.MouseButton1Click:connect(function()

  1453. FloatSlashACTIVE = not FloatSlashACTIVE

  1454. if FloatSlashACTIVE then

  1455. FloatSlash.BackgroundColor3 = rloc

  1456. while wait() do

  1457. if track.IsPlaying == false then

  1458. if FloatSlashACTIVE then

  1459. track:Play(.1, 1, 1)

  1460. end

  1461. end

  1462. end

  1463. else

  1464. track:Stop()

  1465. FloatSlash.BackgroundColor3 = rcol

  1466. end

  1467. end)

  1468. local Anim = Instance.new("Animation")

  1469. Anim.AnimationId = "rbxassetid://708553116"

  1470. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)

  1471. WeirdZombieACTIVE = false

  1472. WeirdZombie.MouseButton1Click:connect(function()

  1473. WeirdZombieACTIVE = not WeirdZombieACTIVE

  1474. if WeirdZombieACTIVE then

  1475. WeirdZombie.BackgroundColor3 = rloc

  1476. while wait() do

  1477. if track.IsPlaying == false then

  1478. if WeirdZombieACTIVE then

  1479. track:Play(.1, 1, 1)

  1480. end

  1481. end

  1482. end

  1483. else

  1484. track:Stop()

  1485. WeirdZombie.BackgroundColor3 = rcol

  1486. end

  1487. end)

  1488. local Anim = Instance.new("Animation")

  1489. Anim.AnimationId = "rbxassetid://746398327"

  1490. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)

  1491. DownSlashACTIVE = false

  1492. DownSlash.MouseButton1Click:connect(function()

  1493. DownSlashACTIVE = not DownSlashACTIVE

  1494. if DownSlashACTIVE then

  1495. DownSlash.BackgroundColor3 = rloc

  1496. while wait() do

  1497. if track.IsPlaying == false then

  1498. if DownSlashACTIVE then

  1499. track:Play(.1, 1, 1)

  1500. end

  1501. end

  1502. end

  1503. else

  1504. track:Stop()

  1505. DownSlash.BackgroundColor3 = rcol

  1506. end

  1507. end)

  1508. local Anim = Instance.new("Animation")

  1509. Anim.AnimationId = "rbxassetid://675025795"

  1510. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)

  1511. PullACTIVE = false

  1512. Pull.MouseButton1Click:connect(function()

  1513. PullACTIVE = not PullACTIVE

  1514. if PullACTIVE then

  1515. Pull.BackgroundColor3 = rloc

  1516. while wait() do

  1517. if track.IsPlaying == false then

  1518. if PullACTIVE then

  1519. track:Play(.1, 1, 1)

  1520. end

  1521. end

  1522. end

  1523. else

  1524. track:Stop()

  1525. Pull.BackgroundColor3 = rcol

  1526. end

  1527. end)

  1528. local Anim = Instance.new("Animation")

  1529. Anim.AnimationId = "rbxassetid://698251653"

  1530. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)

  1531. CircleArmACTIVE = false

  1532. CircleArm.MouseButton1Click:connect(function()

  1533. CircleArmACTIVE = not CircleArmACTIVE

  1534. if CircleArmACTIVE then

  1535. CircleArm.BackgroundColor3 = rloc

  1536. while wait() do

  1537. if track.IsPlaying == false then

  1538. if CircleArmACTIVE then

  1539. track:Play(.1, 1, 1)

  1540. end

  1541. end

  1542. end

  1543. else

  1544. track:Stop()

  1545. CircleArm.BackgroundColor3 = rcol

  1546. end

  1547. end)

  1548. local Anim = Instance.new("Animation")

  1549. Anim.AnimationId = "rbxassetid://696096087"

  1550. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)

  1551. BendACTIVE = false

  1552. Bend.MouseButton1Click:connect(function()

  1553. BendACTIVE = not BendACTIVE

  1554. if BendACTIVE then

  1555. Bend.BackgroundColor3 = rloc

  1556. while wait() do

  1557. if track.IsPlaying == false then

  1558. if BendACTIVE then

  1559. track:Play(.1, 1, 1)

  1560. end

  1561. end

  1562. end

  1563. else

  1564. track:Stop()

  1565. Bend.BackgroundColor3 = rcol

  1566. end

  1567. end)

  1568. local Anim = Instance.new("Animation")

  1569. Anim.AnimationId = "rbxassetid://675025570"

  1570. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)

  1571. RotateSlashACTIVE = false

  1572. RotateSlash.MouseButton1Click:connect(function()

  1573. RotateSlashACTIVE = not RotateSlashACTIVE

  1574. if RotateSlashACTIVE then

  1575. RotateSlash.BackgroundColor3 = rloc

  1576. while wait() do

  1577. if track.IsPlaying == false then

  1578. if RotateSlashACTIVE then

  1579. track:Play(.1, 1, 1)

  1580. end

  1581. end

  1582. end

  1583. else

  1584. track:Stop()

  1585. RotateSlash.BackgroundColor3 = rcol

  1586. end

  1587. end)

  1588. local Anim = Instance.new("Animation")

  1589. Anim.AnimationId = "rbxassetid://754656200"

  1590. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)

  1591. FlingArmsACTIVE = false

  1592. FlingArms.MouseButton1Click:connect(function()

  1593. FlingArmsACTIVE = not FlingArmsACTIVE

  1594. if FlingArmsACTIVE then

  1595. FlingArms.BackgroundColor3 = rloc

  1596. while wait() do

  1597. if track.IsPlaying == false then

  1598. if FlingArmsACTIVE then

  1599. track:Play(.1, 1, 10)

  1600. end

  1601. end

  1602. end

  1603. else

  1604. track:Stop()

  1605. FlingArms.BackgroundColor3 = rcol

  1606. end

  1607. end)

  1608. -- Finished update!

roblox energize r6 animations script - Pastebin.com (2024)

References

Top Articles
Latest Posts
Article information

Author: Errol Quitzon

Last Updated:

Views: 6001

Rating: 4.9 / 5 (59 voted)

Reviews: 82% of readers found this page helpful

Author information

Name: Errol Quitzon

Birthday: 1993-04-02

Address: 70604 Haley Lane, Port Weldonside, TN 99233-0942

Phone: +9665282866296

Job: Product Retail Agent

Hobby: Computer programming, Horseback riding, Hooping, Dance, Ice skating, Backpacking, Rafting

Introduction: My name is Errol Quitzon, I am a fair, cute, fancy, clean, attractive, sparkling, kind person who loves writing and wants to share my knowledge and understanding with you.