Advertisement
spectitude

FE Emotes GUI Script

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