Advertisement
Right2Fight

Untitled

Apr 12th, 2024
268
1
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 128.13 KB | None | 1 0
  1. _G.MorphMod = true
  2.  
  3. local plr = game.Players.LocalPlayer
  4. local pgui = plr.PlayerGui
  5. local interf = pgui.Interface
  6. local bt = interf.Battle
  7. local main = bt.Main
  8. local moves = game.ReplicatedStorage.Moves
  9. local styles = game.ReplicatedStorage.Styles
  10. local plr = game.Players.LocalPlayer
  11. local brawler = styles.Brawler
  12. local rush = styles.Rush
  13. local beast = styles.Beast
  14. local status = plr.Status
  15. local menu = pgui.MenuUI.Menu
  16. local abil = menu.Abilities.Frame.Frame.Frame
  17. local abilFolder = game.ReplicatedStorage.Abilities.Brawler
  18.  
  19. local DragonText = "Dragon"
  20. local DragonColor = Color3.new(0.99, 0.05, 0.1)
  21. local DragonSequence = ColorSequence.new({ColorSequenceKeypoint.new(0, brawler.Color.Value), ColorSequenceKeypoint.new(1, brawler.Color.Value)})
  22.  
  23. function isInBattle()
  24.     return (plr:FindFirstChild("InBattle") and true or false)
  25. end
  26.  
  27. function isDungeon()
  28.     return game.ReplicatedStorage.Dungeon.Value
  29. end
  30.  
  31. function doingHact()
  32.     return (plr.Character:FindFirstChild("Heated") and true or false)
  33. end
  34.  
  35. function showMaxHeatEffect()
  36.     return (isInBattle() and not doingHact() and plr.Status.Heat.Value >= 100) and true or false
  37. end
  38.  
  39. function hasWeaponInHand()
  40.     return (plr.Character:FindFirstChild("Holding") and true or false)
  41. end
  42.  
  43. local notifyevent
  44. for i,v in pairs (pgui:GetChildren()) do
  45.     if v:IsA("BindableEvent") then
  46.         notifyevent = v
  47.     end
  48. end
  49.  
  50. local function sendNotification(text, color, sound)
  51.     if not color then color = Color3.new(1, 1, 1) end
  52.     pgui.NotifyUI.Awards.ChildAdded:Once(function(c)
  53.         if c.Text == text then
  54.             c.TextColor3 = color
  55.             coroutine.wrap(function()
  56.                 local con;
  57.                 con = game:GetService("RunService").RenderStepped:Connect(function()
  58.                     if not c then
  59.                         con:Disconnect()
  60.                         return
  61.                     end
  62.                     c.TextColor3 = color
  63.                 end)()
  64.             end)()
  65.         end
  66.     end)
  67.     notifyevent:Fire(text, sound or nil)
  68. end
  69.  
  70. local alreadyRunning = game.ReplicatedStorage:FindFirstChild("DragonStyle")
  71. if alreadyRunning then
  72.     sendNotification("Dragon Style is already loaded")
  73.     return
  74. end
  75.  
  76.  
  77. alreadyRunning = Instance.new("BoolValue")
  78. alreadyRunning.Parent =game.ReplicatedStorage
  79. alreadyRunning.Value = true
  80. alreadyRunning.Name = "DragonStyle"
  81.  
  82.  
  83. sendNotification("loading mod")
  84.  
  85. if game.ReplicatedStorage.Styles:FindFirstChild("Brawler") then
  86. v = game.ReplicatedStorage.Styles["Brawler"]
  87.     else
  88. v = Instance.new("Folder", game.ReplicatedStorage.Styles)
  89. end                          
  90. v.Name = "Brawler"
  91. if game.ReplicatedStorage.Styles.Brawler:FindFirstChild("Idle") then
  92. v = game.ReplicatedStorage.Styles.Brawler["Idle"]
  93.     else
  94. v = Instance.new("Animation", game.ReplicatedStorage.Styles.Brawler)
  95. end
  96.  
  97. v.AnimationId = "rbxassetid://12120045620"
  98. v.Name = "Idle"
  99. if game.ReplicatedStorage.Styles.Brawler.Idle:FindFirstChild("Core") then
  100. v = game.ReplicatedStorage.Styles.Brawler.Idle["Core"]
  101.     else
  102. v = Instance.new("Folder", game.ReplicatedStorage.Styles.Brawler.Idle)
  103. end
  104. v.Name = "Core"
  105. if game.ReplicatedStorage.Styles.Brawler:FindFirstChild("H_GunStandingShotgun") then
  106. v = game.ReplicatedStorage.Styles.Brawler["H_GunStandingShotgun"]
  107.     else
  108. v = Instance.new("StringValue", game.ReplicatedStorage.Styles.Brawler)
  109. end
  110. v.Value = 'H_ShotStopperShotgun'
  111. v.Name = "H_GunStandingShotgun"
  112. if game.ReplicatedStorage.Styles.Brawler:FindFirstChild("Rush1") then
  113. v = game.ReplicatedStorage.Styles.Brawler["Rush1"]
  114.     else
  115. v = Instance.new("StringValue", game.ReplicatedStorage.Styles.Brawler)
  116. end
  117. v.Value = '龍Attack1'
  118. v.Name = "Rush1"
  119. if game.ReplicatedStorage.Styles.Brawler:FindFirstChild("Rush2") then
  120. v = game.ReplicatedStorage.Styles.Brawler["Rush2"]
  121.     else
  122. v = Instance.new("StringValue", game.ReplicatedStorage.Styles.Brawler)
  123. end
  124. v.Value = '龍Attack2'
  125. v.Name = "Rush2"
  126. if game.ReplicatedStorage.Styles.Brawler:FindFirstChild("Speed") then
  127. v = game.ReplicatedStorage.Styles.Brawler["Speed"]
  128.     else
  129. v = Instance.new("NumberValue", game.ReplicatedStorage.Styles.Brawler)
  130. end
  131. v.Value = 1.5
  132. v.Name = "Speed"
  133. if game.ReplicatedStorage.Styles.Brawler:FindFirstChild("Color") then
  134. v = game.ReplicatedStorage.Styles.Brawler["Color"]
  135.     else
  136. v = Instance.new("Color3Value", game.ReplicatedStorage.Styles.Brawler)
  137. end
  138. v.Value = Color3.fromRGB(255,0,0)
  139. v.Name = "Color"
  140. if game.ReplicatedStorage.Styles.Brawler:FindFirstChild("Strike1") then
  141. v = game.ReplicatedStorage.Styles.Brawler["Strike1"]
  142.     else
  143. v = Instance.new("StringValue", game.ReplicatedStorage.Styles.Brawler)
  144. end
  145. v.Value = '龍Strike1'
  146. v.Name = "Strike1"
  147. if game.ReplicatedStorage.Styles.Brawler:FindFirstChild("Rush3") then
  148. v = game.ReplicatedStorage.Styles.Brawler["Rush3"]
  149.     else
  150. v = Instance.new("StringValue", game.ReplicatedStorage.Styles.Brawler)
  151. end
  152. v.Value = '龍Attack3'
  153. v.Name = "Rush3"
  154. if game.ReplicatedStorage.Styles.Brawler:FindFirstChild("H_LowHealthFallen") then
  155. v = game.ReplicatedStorage.Styles.Brawler["H_LowHealthFallen"]
  156.     else
  157. v = Instance.new("StringValue", game.ReplicatedStorage.Styles.Brawler)
  158. end
  159. v.Value = 'H_FallenFinisher'
  160. v.Name = "H_LowHealthFallen"
  161. if game.ReplicatedStorage.Styles.Brawler:FindFirstChild("LThrow") then
  162. v = game.ReplicatedStorage.Styles.Brawler["LThrow"]
  163.     else
  164. v = Instance.new("StringValue", game.ReplicatedStorage.Styles.Brawler)
  165. end
  166. v.Value = 'T_LegToss'
  167. v.Name = "LThrow"
  168. if game.ReplicatedStorage.Styles.Brawler:FindFirstChild("Rush4") then
  169. v = game.ReplicatedStorage.Styles.Brawler["Rush4"]
  170.     else
  171. v = Instance.new("StringValue", game.ReplicatedStorage.Styles.Brawler)
  172. end
  173. v.Value = '龍Attack4'
  174. v.Name = "Rush4"
  175. if game.ReplicatedStorage.Styles.Brawler:FindFirstChild("Strike2") then
  176. v = game.ReplicatedStorage.Styles.Brawler["Strike2"]
  177.     else
  178. v = Instance.new("StringValue", game.ReplicatedStorage.Styles.Brawler)
  179. end
  180. v.Value = 'BStrike2'
  181. v.Name = "Strike2"
  182. if game.ReplicatedStorage.Styles.Brawler:FindFirstChild("Strike3") then
  183. v = game.ReplicatedStorage.Styles.Brawler["Strike3"]
  184.     else
  185. v = Instance.new("StringValue", game.ReplicatedStorage.Styles.Brawler)
  186. end
  187. v.Value = 'BStrike3'
  188. v.Name = "Strike3"
  189. if game.ReplicatedStorage.Styles.Brawler:FindFirstChild("Strike4") then
  190. v = game.ReplicatedStorage.Styles.Brawler["Strike4"]
  191.     else
  192. v = Instance.new("StringValue", game.ReplicatedStorage.Styles.Brawler)
  193. end
  194. v.Value = 'BStrike5'
  195. v.Name = "Strike4"
  196. if game.ReplicatedStorage.Styles.Brawler:FindFirstChild("Strike5") then
  197. v = game.ReplicatedStorage.Styles.Brawler["Strike5"]
  198.     else
  199. v = Instance.new("StringValue", game.ReplicatedStorage.Styles.Brawler)
  200. end
  201. v.Value = '龍Strike5'
  202. v.Name = "Strike5"
  203. if game.ReplicatedStorage.Styles.Brawler:FindFirstChild("Grab") then
  204. v = game.ReplicatedStorage.Styles.Brawler["Grab"]
  205.     else
  206. v = Instance.new("StringValue", game.ReplicatedStorage.Styles.Brawler)
  207. end
  208. v.Value = 'GGrab'
  209. v.Name = "Grab"
  210. if game.ReplicatedStorage.Styles.Brawler:FindFirstChild("BlockStrike") then
  211. v = game.ReplicatedStorage.Styles.Brawler["BlockStrike"]
  212.     else
  213. v = Instance.new("StringValue", game.ReplicatedStorage.Styles.Brawler)
  214. end
  215. v.Value = 'GuruKnockback'
  216. v.Name = "BlockStrike"
  217. if game.ReplicatedStorage.Styles.Brawler:FindFirstChild("H_BackWall") then
  218. v = game.ReplicatedStorage.Styles.Brawler["H_BackWall"]
  219.     else
  220. v = Instance.new("StringValue", game.ReplicatedStorage.Styles.Brawler)
  221. end
  222. v.Value = 'H_WallSmashing'
  223. v.Name = "H_BackWall"
  224. if game.ReplicatedStorage.Styles.Brawler:FindFirstChild("H_CounterSolo") then
  225. v = game.ReplicatedStorage.Styles.Brawler["H_CounterSolo"]
  226.     else
  227. v = Instance.new("StringValue", game.ReplicatedStorage.Styles.Brawler)
  228. end
  229. v.Value = 'H_Escape'
  230. v.Name = "H_CounterSolo"
  231. if game.ReplicatedStorage.Styles.Brawler:FindFirstChild("RedHeat") then
  232. v = game.ReplicatedStorage.Styles.Brawler["RedHeat"]
  233.     else
  234. v = Instance.new("Folder", game.ReplicatedStorage.Styles.Brawler)
  235. end
  236. v.Name = "RedHeat"
  237. if game.ReplicatedStorage.Styles.Brawler:FindFirstChild("GrabStrike") then
  238. v = game.ReplicatedStorage.Styles.Brawler["GrabStrike"]
  239.     else
  240. v = Instance.new("StringValue", game.ReplicatedStorage.Styles.Brawler)
  241. end
  242. v.Value = 'T_GuruParry'
  243. v.Name = "GrabStrike"
  244. if game.ReplicatedStorage.Styles.Brawler:FindFirstChild("StanceStrike") then
  245. v = game.ReplicatedStorage.Styles.Brawler["StanceStrike"]
  246.     else
  247. v = Instance.new("StringValue", game.ReplicatedStorage.Styles.Brawler)
  248. end
  249. v.Value = 'TigerDrop'
  250. v.Name = "StanceStrike"
  251. if game.ReplicatedStorage.Styles.Brawler:FindFirstChild("StrikeThrow") then
  252. v = game.ReplicatedStorage.Styles.Brawler["StrikeThrow"]
  253.     else
  254. v = Instance.new("StringValue", game.ReplicatedStorage.Styles.Brawler)
  255. end
  256. v.Value = 'T_FinishingHold'
  257. v.Name = "StrikeThrow"
  258. if game.ReplicatedStorage.Styles.Brawler:FindFirstChild("H_StanceFallen") then
  259. v = game.ReplicatedStorage.Styles.Brawler["H_StanceFallen"]
  260.     else
  261. v = Instance.new("StringValue", game.ReplicatedStorage.Styles.Brawler)
  262. end
  263. v.Value = 'H_FallenSupine'
  264. v.Name = "H_StanceFallen"
  265. if game.ReplicatedStorage.Styles.Brawler:FindFirstChild("VisualName") then
  266. v = game.ReplicatedStorage.Styles.Brawler["VisualName"]
  267.     else
  268. v = Instance.new("StringValue", game.ReplicatedStorage.Styles.Brawler)
  269. end
  270. v.Value = 'Dragon'
  271. v.Name = "VisualName"
  272. if game.ReplicatedStorage.Styles.Brawler:FindFirstChild("Throw") then
  273. v = game.ReplicatedStorage.Styles.Brawler["Throw"]
  274.     else
  275. v = Instance.new("StringValue", game.ReplicatedStorage.Styles.Brawler)
  276. end
  277. v.Value = 'T_BrawlerToss'
  278. v.Name = "Throw"
  279. if game.ReplicatedStorage.Styles.Brawler:FindFirstChild("DoubleBlows") then
  280. v = game.ReplicatedStorage.Styles.Brawler["DoubleBlows"]
  281.     else
  282. v = Instance.new("Folder", game.ReplicatedStorage.Styles.Brawler)
  283. end
  284. v.Name = "DoubleBlows"
  285. if game.ReplicatedStorage.Styles.Brawler:FindFirstChild("2Strike4") then
  286. v = game.ReplicatedStorage.Styles.Brawler["2Strike4"]
  287.     else
  288. v = Instance.new("StringValue", game.ReplicatedStorage.Styles.Brawler)
  289. end
  290. v.Value = '龍2Strike3'
  291. v.Name = "2Strike4"
  292. if game.ReplicatedStorage.Styles.Brawler:FindFirstChild("2Strike2") then
  293. v = game.ReplicatedStorage.Styles.Brawler["2Strike2"]
  294.     else
  295. v = Instance.new("StringValue", game.ReplicatedStorage.Styles.Brawler)
  296. end
  297. v.Value = '龍2Strike1'
  298. v.Name = "2Strike2"
  299. if game.ReplicatedStorage.Styles.Brawler:FindFirstChild("2Strike3") then
  300. v = game.ReplicatedStorage.Styles.Brawler["2Strike3"]
  301.     else
  302. v = Instance.new("StringValue", game.ReplicatedStorage.Styles.Brawler)
  303. end
  304. v.Value = '龍2Strike2'
  305. v.Name = "2Strike3"
  306. if game.ReplicatedStorage.Styles.Brawler:FindFirstChild("2Strike5") then
  307. v = game.ReplicatedStorage.Styles.Brawler["2Strike5"]
  308.     else
  309. v = Instance.new("StringValue", game.ReplicatedStorage.Styles.Brawler)
  310. end
  311. v.Value = '龍2Strike4'
  312. v.Name = "2Strike5"
  313. if game.ReplicatedStorage.Styles.Brawler:FindFirstChild("H_GrabOnWall") then
  314. v = game.ReplicatedStorage.Styles.Brawler["H_GrabOnWall"]
  315.     else
  316. v = Instance.new("StringValue", game.ReplicatedStorage.Styles.Brawler)
  317. end
  318. v.Value = 'H_WallSmack'
  319. v.Name = "H_GrabOnWall"
  320. if game.ReplicatedStorage.Styles.Brawler:FindFirstChild("GrabCorpses") then
  321. v = game.ReplicatedStorage.Styles.Brawler["GrabCorpses"]
  322.     else
  323. v = Instance.new("Folder", game.ReplicatedStorage.Styles.Brawler)
  324. end
  325. v.Name = "GrabCorpses"
  326. if game.ReplicatedStorage.Styles.Brawler:FindFirstChild("EvadeStrikeB") then
  327. v = game.ReplicatedStorage.Styles.Brawler["EvadeStrikeB"]
  328.     else
  329. v = Instance.new("StringValue", game.ReplicatedStorage.Styles.Brawler)
  330. end
  331. v.Value = 'BEvadeStrikeBack'
  332. v.Name = "EvadeStrikeB"
  333. if game.ReplicatedStorage.Styles.Brawler:FindFirstChild("EvadeStrikeF") then
  334. v = game.ReplicatedStorage.Styles.Brawler["EvadeStrikeF"]
  335.     else
  336. v = Instance.new("StringValue", game.ReplicatedStorage.Styles.Brawler)
  337. end
  338. v.Value = 'BEvadeStrikeForward'
  339. v.Name = "EvadeStrikeF"
  340. if game.ReplicatedStorage.Styles.Brawler:FindFirstChild("EvadeStrikeL") then
  341. v = game.ReplicatedStorage.Styles.Brawler["EvadeStrikeL"]
  342.     else
  343. v = Instance.new("StringValue", game.ReplicatedStorage.Styles.Brawler)
  344. end
  345. v.Value = 'BEvadeStrikeLeft'
  346. v.Name = "EvadeStrikeL"
  347. if game.ReplicatedStorage.Styles.Brawler:FindFirstChild("EvadeStrikeR") then
  348. v = game.ReplicatedStorage.Styles.Brawler["EvadeStrikeR"]
  349.     else
  350. v = Instance.new("StringValue", game.ReplicatedStorage.Styles.Brawler)
  351. end
  352. v.Value = 'BEvadeStrikeRight'
  353. v.Name = "EvadeStrikeR"
  354. if game.ReplicatedStorage.Styles.Brawler:FindFirstChild("DashAttack") then
  355. v = game.ReplicatedStorage.Styles.Brawler["DashAttack"]
  356.     else
  357. v = Instance.new("StringValue", game.ReplicatedStorage.Styles.Brawler)
  358. end
  359. v.Value = 'RDashAttack'
  360. v.Name = "DashAttack"
  361. if game.ReplicatedStorage.Styles.Brawler:FindFirstChild("H_Distanced") then
  362. v = game.ReplicatedStorage.Styles.Brawler["H_Distanced"]
  363.     else
  364. v = Instance.new("StringValue", game.ReplicatedStorage.Styles.Brawler)
  365. end
  366. v.Value = 'H_FastFootworkBack'
  367. v.Name = "H_Distanced"
  368. if game.ReplicatedStorage.Styles.Brawler:FindFirstChild("H_TwoHandeds") then
  369. v = game.ReplicatedStorage.Styles.Brawler["H_TwoHandeds"]
  370.     else
  371. v = Instance.new("StringValue", game.ReplicatedStorage.Styles.Brawler)
  372. end
  373. v.Value = 'H_SelfDestruct'
  374. v.Name = "H_TwoHandeds"
  375. if game.ReplicatedStorage.Styles.Brawler:FindFirstChild("H_FullHeat") then
  376. v = game.ReplicatedStorage.Styles.Brawler["H_FullHeat"]
  377.     else
  378. v = Instance.new("StringValue", game.ReplicatedStorage.Styles.Brawler)
  379. end
  380. v.Value = 'H_GUltimateEssence'
  381. v.Name = "H_FullHeat"
  382. if game.ReplicatedStorage.Styles.Brawler:FindFirstChild("H_GrabStanding") then
  383. v = game.ReplicatedStorage.Styles.Brawler["H_GrabStanding"]
  384.     else
  385. v = Instance.new("StringValue", game.ReplicatedStorage.Styles.Brawler)
  386. end
  387. v.Value = 'H_Fisticuffs'
  388. v.Name = "H_GrabStanding"
  389. if game.ReplicatedStorage.Styles.Brawler:FindFirstChild("H_CounterSoloAllRight") then
  390. v = game.ReplicatedStorage.Styles.Brawler["H_CounterSoloAllRight"]
  391.     else
  392. v = Instance.new("StringValue", game.ReplicatedStorage.Styles.Brawler)
  393. end
  394. v.Value = 'H_TSpinCounterRight'
  395. v.Name = "H_CounterSoloAllRight"
  396. if game.ReplicatedStorage.Styles.Brawler:FindFirstChild("H_CounterSoloAllLeft") then
  397. v = game.ReplicatedStorage.Styles.Brawler["H_CounterSoloAllLeft"]
  398.     else
  399. v = Instance.new("StringValue", game.ReplicatedStorage.Styles.Brawler)
  400. end
  401. v.Value = 'H_TSpinCounterLeft'
  402. v.Name = "H_CounterSoloAllLeft"
  403. if game.ReplicatedStorage.Styles.Brawler:FindFirstChild("H_CounterSoloAllFront") then
  404. v = game.ReplicatedStorage.Styles.Brawler["H_CounterSoloAllFront"]
  405.     else
  406. v = Instance.new("StringValue", game.ReplicatedStorage.Styles.Brawler)
  407. end
  408. v.Value = 'H_TSpinCounterFront'
  409. v.Name = "H_CounterSoloAllFront"
  410. if game.ReplicatedStorage.Styles.Brawler:FindFirstChild("H_CounterSoloAllBack") then
  411. v = game.ReplicatedStorage.Styles.Brawler["H_CounterSoloAllBack"]
  412.     else
  413. v = Instance.new("StringValue", game.ReplicatedStorage.Styles.Brawler)
  414. end
  415. v.Value = 'H_TSpinCounterBack'
  416. v.Name = "H_CounterSoloAllBack"
  417. if game.ReplicatedStorage.Styles.Brawler:FindFirstChild("H_GrabStanding2") then
  418. v = game.ReplicatedStorage.Styles.Brawler["H_GrabStanding2"]
  419.     else
  420. v = Instance.new("StringValue", game.ReplicatedStorage.Styles.Brawler)
  421. end
  422. v.Value = 'H_DoubleHeadCrush'
  423. v.Name = "H_GrabStanding2"
  424. if game.ReplicatedStorage.Styles.Brawler:FindFirstChild("H_RunningFallen") then
  425. v = game.ReplicatedStorage.Styles.Brawler["H_RunningFallen"]
  426.     else
  427. v = Instance.new("StringValue", game.ReplicatedStorage.Styles.Brawler)
  428. end
  429. v.Value = 'H_FinishingBlow'
  430. v.Name = "H_RunningFallen"
  431. if game.ReplicatedStorage.Styles.Brawler:FindFirstChild("H_StandingBehind") then
  432. v = game.ReplicatedStorage.Styles.Brawler["H_StandingBehind"]
  433.     else
  434. v = Instance.new("StringValue", game.ReplicatedStorage.Styles.Brawler)
  435. end
  436. v.Value = 'H_Chokehold'
  437. v.Name = "H_StandingBehind"
  438. if game.ReplicatedStorage.Styles.Brawler:FindFirstChild("H_SuperEvading") then
  439. v = game.ReplicatedStorage.Styles.Brawler["H_SuperEvading"]
  440.     else
  441. v = Instance.new("StringValue", game.ReplicatedStorage.Styles.Brawler)
  442. end
  443. v.Value = 'H_Rolling'
  444. v.Name = "H_SuperEvading"
  445. if game.ReplicatedStorage.Styles.Brawler:FindFirstChild("Taunt") then
  446. v = game.ReplicatedStorage.Styles.Brawler["Taunt"]
  447.     else
  448. v = Instance.new("StringValue", game.ReplicatedStorage.Styles.Brawler)
  449. end
  450. v.Value = 'DragonTaunt'
  451. v.Name = "Taunt"
  452. if game.ReplicatedStorage.Styles.Brawler:FindFirstChild("H_Running4") then
  453. v = game.ReplicatedStorage.Styles.Brawler["H_Running4"]
  454.     else
  455. v = Instance.new("StringValue", game.ReplicatedStorage.Styles.Brawler)
  456. end
  457. v.Value = 'H_Terror'
  458. v.Name = "H_Running4"
  459. if game.ReplicatedStorage.Styles.Brawler:FindFirstChild("HThrow") then
  460. v = game.ReplicatedStorage.Styles.Brawler["HThrow"]
  461.     else
  462. v = Instance.new("StringValue", game.ReplicatedStorage.Styles.Brawler)
  463. end
  464. v.Value = 'T_FinishingHold2'
  465. v.Name = "HThrow"
  466. if game.ReplicatedStorage.Styles.Brawler:FindFirstChild("LHThrow") then
  467. v = game.ReplicatedStorage.Styles.Brawler["LHThrow"]
  468.     else
  469. v = Instance.new("StringValue", game.ReplicatedStorage.Styles.Brawler)
  470. end
  471. v.Value = 'T_BHeavyToss'
  472. v.Name = "LHThrow"
  473. if game.ReplicatedStorage.Styles.Brawler:FindFirstChild("H_FallenDown") then
  474. v = game.ReplicatedStorage.Styles.Brawler["H_FallenDown"]
  475.     else
  476. v = Instance.new("StringValue", game.ReplicatedStorage.Styles.Brawler)
  477. end
  478. v.Value = 'H_FallenKick'
  479. v.Name = "H_FallenDown"
  480. if game.ReplicatedStorage.Styles.Brawler:FindFirstChild("H_Fallen") then
  481. v = game.ReplicatedStorage.Styles.Brawler["H_Fallen"]
  482.     else
  483. v = Instance.new("StringValue", game.ReplicatedStorage.Styles.Brawler)
  484. end
  485. v.Value = 'H_FallenStomp'
  486. v.Name = "H_Fallen"
  487. if game.ReplicatedStorage.Styles.Brawler:FindFirstChild("H_GunStandingHandgun") then
  488. v = game.ReplicatedStorage.Styles.Brawler["H_GunStandingHandgun"]
  489.     else
  490. v = Instance.new("StringValue", game.ReplicatedStorage.Styles.Brawler)
  491. end
  492. v.Value = 'H_ShotStopperHandgun'
  493. v.Name = "H_GunStandingHandgun"
  494. if game.ReplicatedStorage.Styles.Brawler:FindFirstChild("H_GunStanding") then
  495. v = game.ReplicatedStorage.Styles.Brawler["H_GunStanding"]
  496.     else
  497. v = Instance.new("StringValue", game.ReplicatedStorage.Styles.Brawler)
  498. end
  499. v.Value = 'H_ShotStopper'
  500. v.Name = "H_GunStanding"
  501. if game.ReplicatedStorage.Moves.H_FastFootworkBack:FindFirstChild("Closest") then
  502. v = game.ReplicatedStorage.Moves.H_FastFootworkBack["Closest"]
  503.     else
  504. v = Instance.new("StringValue", game.ReplicatedStorage.Moves.H_FastFootworkBack)
  505. end
  506. v.Value = '50'
  507. v.Name = "Closest"
  508. if game.ReplicatedStorage.Moves.H_FastFootworkBack:FindFirstChild("Distance") then
  509. v = game.ReplicatedStorage.Moves.H_FastFootworkBack["Distance"]
  510.     else
  511. v = Instance.new("StringValue", game.ReplicatedStorage.Moves.H_FastFootworkBack)
  512. end
  513. v.Value = '50'
  514. v.Name = "Distance"
  515. if game.ReplicatedStorage.Moves.H_FastFootworkBack:FindFirstChild("Within") then
  516. v = game.ReplicatedStorage.Moves.H_FastFootworkBack["Within"]
  517.     else
  518. v = Instance.new("StringValue", game.ReplicatedStorage.Moves.H_FastFootworkBack)
  519. end
  520. v.Value = '15'
  521. v.Name = "Within"
  522. if game.ReplicatedStorage.Moves.H_FastFootworkBack:FindFirstChild("HeatUse") then
  523. v = game.ReplicatedStorage.Moves.H_FastFootworkBack["HeatUse"]
  524.     else
  525. v = Instance.new("IntValue", game.ReplicatedStorage.Moves.H_FastFootworkBack)
  526. end
  527. v.Value = 50
  528. v.Name = "HeatUse"
  529. if game.ReplicatedStorage.Moves.H_FastFootworkBack:FindFirstChild("HeatNeeded") then
  530. v = game.ReplicatedStorage.Moves.H_FastFootworkBack["HeatNeeded"]
  531.     else
  532. v = Instance.new("StringValue", game.ReplicatedStorage.Moves.H_FastFootworkBack)
  533. end
  534. v.Value = 'Normal'
  535. v.Name = "HeatNeeded"
  536.                                                                                                                                                                                                                                                                                                                                                                                                                                                 main.Heat.noheattho.Text = "Heat Actions Disabled"
  537.                                                                                                                                                                                                                                                                                                                                                                                                                                                 main.Heat.noheattho.Size = UDim2.new(10, 0, 1, 0)
  538.  
  539.                                                                                                                                                                                                                                                                                                                                                                                                                                                 menu.Bars.Mobile_Title.Text = "Dragon Style Mod by d_ucksy"
  540.                                                                                                                                                                                                                                                                                                                                                                                                                                                 menu.Bars.Mobile_Title.Visible = true
  541. --------------------------Taunt-----------------------------------
  542. if game.ReplicatedStorage.Moves:FindFirstChild("DragonTaunt") then
  543. v = game.ReplicatedStorage.Moves["DragonTaunt"]
  544.     else
  545. v = Instance.new("Folder", game.ReplicatedStorage.Moves)
  546. end
  547. v.Name = "DragonTaunt"
  548. if game.ReplicatedStorage.Moves.DragonTaunt:FindFirstChild("Dmg") then
  549. v = game.ReplicatedStorage.Moves.DragonTaunt["Dmg"]
  550.     else
  551. v = Instance.new("IntValue", game.ReplicatedStorage.Moves.DragonTaunt)
  552. end
  553. v.Value = 0
  554. v.Name = "Dmg"
  555. if game.ReplicatedStorage.Moves.DragonTaunt:FindFirstChild("HitboxLocations") then
  556. v = game.ReplicatedStorage.Moves.DragonTaunt["HitboxLocations"]
  557.     else
  558. v = Instance.new("StringValue", game.ReplicatedStorage.Moves.DragonTaunt)
  559. end
  560. v.Value = '[["RightHand",3,[0,-1,0]],["RightLowerArm",1.5,[0,0,0]],["RightUpperArm",1,[0,0,0]]]'
  561. v.Name = "HitboxLocations"
  562. if game.ReplicatedStorage.Moves.DragonTaunt:FindFirstChild("AniSpeed") then
  563. v = game.ReplicatedStorage.Moves.DragonTaunt["AniSpeed"]
  564.     else
  565. v = Instance.new("NumberValue", game.ReplicatedStorage.Moves.DragonTaunt)
  566. end
  567. v.Value = 1.225
  568. v.Name = "AniSpeed"
  569. if game.ReplicatedStorage.Moves.DragonTaunt:FindFirstChild("Sound") then
  570. v = game.ReplicatedStorage.Moves.DragonTaunt["Sound"]
  571.     else
  572. v = Instance.new("StringValue", game.ReplicatedStorage.Moves.DragonTaunt)
  573. end
  574. v.Value = 'FakeLaugh'
  575. v.Name = "Sound"
  576. if game.ReplicatedStorage.Moves.DragonTaunt:FindFirstChild("NoDmg") then
  577. v = game.ReplicatedStorage.Moves.DragonTaunt["NoDmg"]
  578.     else
  579. v = Instance.new("Folder", game.ReplicatedStorage.Moves.DragonTaunt)
  580. end
  581. v.Name = "NoDmg"
  582. if game.ReplicatedStorage.Moves.DragonTaunt:FindFirstChild("HeatAt") then
  583. v = game.ReplicatedStorage.Moves.DragonTaunt["HeatAt"]
  584.     else
  585. v = Instance.new("NumberValue", game.ReplicatedStorage.Moves.DragonTaunt)
  586. end
  587. v.Value = 0.15
  588. v.Name = "HeatAt"
  589. if game.ReplicatedStorage.Moves.DragonTaunt:FindFirstChild("HeatGain") then
  590. v = game.ReplicatedStorage.Moves.DragonTaunt["HeatGain"]
  591.     else
  592. v = Instance.new("IntValue", game.ReplicatedStorage.Moves.DragonTaunt)
  593. end
  594. v.Value = 100
  595. v.Name = "HeatGain"
  596. if game.ReplicatedStorage.Moves.DragonTaunt:FindFirstChild("ForceSound") then
  597. v = game.ReplicatedStorage.Moves.DragonTaunt["ForceSound"]
  598.     else
  599. v = Instance.new("Folder", game.ReplicatedStorage.Moves.DragonTaunt)
  600. end
  601. v.Name = "ForceSound"
  602. if game.ReplicatedStorage.Moves.DragonTaunt:FindFirstChild("TauntSound") then
  603. v = game.ReplicatedStorage.Moves.DragonTaunt["TauntSound"]
  604.     else
  605. v = Instance.new("Folder", game.ReplicatedStorage.Moves.DragonTaunt)
  606. end
  607. v.Name = "TauntSound"
  608. if game.ReplicatedStorage.Moves.DragonTaunt:FindFirstChild("EndAt") then
  609. v = game.ReplicatedStorage.Moves.DragonTaunt["EndAt"]
  610.     else
  611. v = Instance.new("NumberValue", game.ReplicatedStorage.Moves.DragonTaunt)
  612. end
  613. v.Value = 0.8
  614. v.Name = "EndAt"
  615. if game.ReplicatedStorage.Moves.DragonTaunt:FindFirstChild("Anim") then
  616. v = game.ReplicatedStorage.Moves.DragonTaunt["Anim"]
  617.     else
  618. v = Instance.new("Animation", game.ReplicatedStorage.Moves.DragonTaunt)
  619. end
  620.  
  621. v.AnimationId = "rbxassetid://10928237540"
  622. v.Name = "Anim"
  623. if game.ReplicatedStorage.Moves.DragonTaunt:FindFirstChild("MoveForward") then
  624. v = game.ReplicatedStorage.Moves.DragonTaunt["MoveForward"]
  625.     else
  626. v = Instance.new("IntValue", game.ReplicatedStorage.Moves.DragonTaunt)
  627. end
  628. v.Value = 2
  629. v.Name = "MoveForward"
  630. if game.ReplicatedStorage.Moves.DragonTaunt:FindFirstChild("MoveStart2") then
  631. v = game.ReplicatedStorage.Moves.DragonTaunt["MoveStart2"]
  632.     else
  633. v = Instance.new("NumberValue", game.ReplicatedStorage.Moves.DragonTaunt)
  634. end
  635. v.Value = 1.8
  636. v.Name = "MoveStart2"
  637. if game.ReplicatedStorage.Moves.DragonTaunt:FindFirstChild("MoveDuration") then
  638. v = game.ReplicatedStorage.Moves.DragonTaunt["MoveDuration"]
  639.     else
  640. v = Instance.new("NumberValue", game.ReplicatedStorage.Moves.DragonTaunt)
  641. end
  642. v.Value = 0.4
  643. v.Name = "MoveDuration"
  644. if game.ReplicatedStorage.Moves.DragonTaunt:FindFirstChild("Dragon") then
  645. v = game.ReplicatedStorage.Moves.DragonTaunt["Dragon"]
  646.     else
  647. v = Instance.new("Folder", game.ReplicatedStorage.Moves.DragonTaunt)
  648. end
  649. v.Name = "Dragon"
  650. if game.ReplicatedStorage.Moves.DragonTaunt:FindFirstChild("Cancelable") then
  651. v = game.ReplicatedStorage.Moves.DragonTaunt["Cancelable"]
  652.     else
  653. v = Instance.new("Folder", game.ReplicatedStorage.Moves.DragonTaunt)
  654. end
  655. v.Name = "Cancelable"
  656. if game.ReplicatedStorage.Moves["龍Attack1"]:FindFirstChild("ComboAt") then
  657. v = game.ReplicatedStorage.Moves["龍Attack1"]["ComboAt"]
  658.     else
  659. v = Instance.new("NumberValue", game.ReplicatedStorage.Moves["龍Attack1"])
  660. end
  661. v.Value = 0.3
  662. v.Name = "ComboAt"
  663. if game.ReplicatedStorage.Moves["龍Attack2"]:FindFirstChild("ComboAt") then
  664. v = game.ReplicatedStorage.Moves["龍Attack2"]["ComboAt"]
  665.     else
  666. v = Instance.new("NumberValue", game.ReplicatedStorage.Moves["龍Attack2"])
  667. end
  668. v.Value = 0.3
  669. v.Name = "ComboAt"
  670. if game.ReplicatedStorage.Moves["龍Attack3"]:FindFirstChild("ComboAt") then
  671. v = game.ReplicatedStorage.Moves["龍Attack3"]["ComboAt"]
  672.     else
  673. v = Instance.new("NumberValue", game.ReplicatedStorage.Moves["龍Attack3"])
  674. end
  675. v.Value = 0.3
  676. v.Name = "ComboAt"
  677. if game.ReplicatedStorage.Moves["龍Attack4"]:FindFirstChild("ComboAt") then
  678. v = game.ReplicatedStorage.Moves["龍Attack4"]["ComboAt"]
  679.     else
  680. v = Instance.new("NumberValue", game.ReplicatedStorage.Moves["龍Attack4"])
  681. end
  682. v.Value = 0.3
  683. v.Name = "ComboAt"
  684. if game.ReplicatedStorage.Moves["龍Strike5"]:FindFirstChild("ComboAt") then
  685. v = game.ReplicatedStorage.Moves["龍Strike5"]["ComboAt"]
  686.     else
  687. v = Instance.new("NumberValue", game.ReplicatedStorage.Moves["龍Strike5"])
  688. end
  689. v.Value = 0.55
  690. v.Name = "ComboAt"
  691. if game.ReplicatedStorage.Moves["BStrike5"]:FindFirstChild("ComboAt") then
  692. v = game.ReplicatedStorage.Moves["BStrike5"]["ComboAt"]
  693.     else
  694. v = Instance.new("NumberValue", game.ReplicatedStorage.Moves["BStrike5"])
  695. end
  696. v.Value = 0.55
  697. v.Name = "ComboAt"
  698. if game.ReplicatedStorage.Styles:FindFirstChild("Rush") then
  699. v = game.ReplicatedStorage.Styles["Rush"]
  700.     else
  701. v = Instance.new("Folder", game.ReplicatedStorage.Styles)
  702. end
  703. v.Name = "Rush"
  704. if game.ReplicatedStorage.Styles.Rush:FindFirstChild("H_EvadedF") then
  705. v = game.ReplicatedStorage.Styles.Rush["H_EvadedF"]
  706.     else
  707. v = Instance.new("StringValue", game.ReplicatedStorage.Styles.Rush)
  708. end
  709. v.Value = 'H_FastFootworkFront'
  710. v.Name = "H_EvadedF"
  711. if game.ReplicatedStorage.Styles.Rush:FindFirstChild("H_Stunning") then
  712. v = game.ReplicatedStorage.Styles.Rush["H_Stunning"]
  713.     else
  714. v = Instance.new("StringValue", game.ReplicatedStorage.Styles.Rush)
  715. end
  716. v.Value = 'H_Reversal'
  717. v.Name = "H_Stunning"
  718. if game.ReplicatedStorage.Styles.Rush:FindFirstChild("StartBlock") then
  719. v = game.ReplicatedStorage.Styles.Rush["StartBlock"]
  720.     else
  721. v = Instance.new("Animation", game.ReplicatedStorage.Styles.Rush)
  722. end
  723.  
  724. v.AnimationId = "rbxassetid://10848090844"
  725. v.Name = "StartBlock"
  726. if game.ReplicatedStorage.Styles.Rush:FindFirstChild("Taunt") then
  727. v = game.ReplicatedStorage.Styles.Rush["Taunt"]
  728.     else
  729. v = Instance.new("StringValue", game.ReplicatedStorage.Styles.Rush)
  730. end
  731. v.Value = 'RushTaunt'
  732. v.Name = "Taunt"
  733. if game.ReplicatedStorage.Styles.Rush:FindFirstChild("EvadeStrikeB") then
  734. v = game.ReplicatedStorage.Styles.Rush["EvadeStrikeB"]
  735.     else
  736. v = Instance.new("StringValue", game.ReplicatedStorage.Styles.Rush)
  737. end
  738. v.Value = 'RStrike2'
  739. v.Name = "EvadeStrikeB"
  740. if game.ReplicatedStorage.Styles.Rush:FindFirstChild("Speed") then
  741. v = game.ReplicatedStorage.Styles.Rush["Speed"]
  742.     else
  743. v = Instance.new("NumberValue", game.ReplicatedStorage.Styles.Rush)
  744. end
  745. v.Value = 1.2
  746. v.Name = "Speed"
  747. if game.ReplicatedStorage.Styles.Rush:FindFirstChild("Color") then
  748. v = game.ReplicatedStorage.Styles.Rush["Color"]
  749.     else
  750. v = Instance.new("Color3Value", game.ReplicatedStorage.Styles.Rush)
  751. end
  752. v.Value = Color3.fromRGB(255,0,255)
  753. v.Name = "Color"
  754. if game.ReplicatedStorage.Styles.Rush:FindFirstChild("VisualName") then
  755. v = game.ReplicatedStorage.Styles.Rush["VisualName"]
  756.     else
  757. v = Instance.new("StringValue", game.ReplicatedStorage.Styles.Rush)
  758. end
  759. v.Value = 'Rush'
  760. v.Name = "VisualName"
  761. if game.ReplicatedStorage.Styles.Rush:FindFirstChild("H_LowHealthFallen") then
  762. v = game.ReplicatedStorage.Styles.Rush["H_LowHealthFallen"]
  763.     else
  764. v = Instance.new("StringValue", game.ReplicatedStorage.Styles.Rush)
  765. end
  766. v.Value = 'H_FallenFinisher'
  767. v.Name = "H_LowHealthFallen"
  768. if game.ReplicatedStorage.Styles.Rush:FindFirstChild("H_Fallen") then
  769. v = game.ReplicatedStorage.Styles.Rush["H_Fallen"]
  770.     else
  771. v = Instance.new("StringValue", game.ReplicatedStorage.Styles.Rush)
  772. end
  773. v.Value = 'H_FallenStomp'
  774. v.Name = "H_Fallen"
  775. if game.ReplicatedStorage.Styles.Rush:FindFirstChild("H_BackWall") then
  776. v = game.ReplicatedStorage.Styles.Rush["H_BackWall"]
  777.     else
  778. v = Instance.new("StringValue", game.ReplicatedStorage.Styles.Rush)
  779. end
  780. v.Value = 'H_CrushingWall'
  781. v.Name = "H_BackWall"
  782. if game.ReplicatedStorage.Styles.Rush:FindFirstChild("Grab") then
  783. v = game.ReplicatedStorage.Styles.Rush["Grab"]
  784.     else
  785. v = Instance.new("StringValue", game.ReplicatedStorage.Styles.Rush)
  786. end
  787. v.Value = 'RSweep'
  788. v.Name = "Grab"
  789. if game.ReplicatedStorage.Styles.Rush:FindFirstChild("H_CounterSolo") then
  790. v = game.ReplicatedStorage.Styles.Rush["H_CounterSolo"]
  791.     else
  792. v = Instance.new("StringValue", game.ReplicatedStorage.Styles.Rush)
  793. end
  794. v.Value = 'H_FrenzySpinCounter'
  795. v.Name = "H_CounterSolo"
  796. if game.ReplicatedStorage.Styles.Rush:FindFirstChild("EvadeStrikeR") then
  797. v = game.ReplicatedStorage.Styles.Rush["EvadeStrikeR"]
  798.     else
  799. v = Instance.new("StringValue", game.ReplicatedStorage.Styles.Rush)
  800. end
  801. v.Value = 'RStrike2'
  802. v.Name = "EvadeStrikeR"
  803. if game.ReplicatedStorage.Styles.Rush:FindFirstChild("EvadeStrikeL") then
  804. v = game.ReplicatedStorage.Styles.Rush["EvadeStrikeL"]
  805.     else
  806. v = Instance.new("StringValue", game.ReplicatedStorage.Styles.Rush)
  807. end
  808. v.Value = 'RStrike2'
  809. v.Name = "EvadeStrikeL"
  810. if game.ReplicatedStorage.Styles.Rush:FindFirstChild("EvadeStrikeF") then
  811. v = game.ReplicatedStorage.Styles.Rush["EvadeStrikeF"]
  812.     else
  813. v = Instance.new("StringValue", game.ReplicatedStorage.Styles.Rush)
  814. end
  815. v.Value = 'RStrike2'
  816. v.Name = "EvadeStrikeF"
  817. if game.ReplicatedStorage.Styles.Rush:FindFirstChild("H_Stunned") then
  818. v = game.ReplicatedStorage.Styles.Rush["H_Stunned"]
  819.     else
  820. v = Instance.new("StringValue", game.ReplicatedStorage.Styles.Rush)
  821. end
  822. v.Value = 'H_FlyingKick'
  823. v.Name = "H_Stunned"
  824. if game.ReplicatedStorage.Styles.Rush:FindFirstChild("Rush2") then
  825. v = game.ReplicatedStorage.Styles.Rush["Rush2"]
  826.     else
  827. v = Instance.new("StringValue", game.ReplicatedStorage.Styles.Rush)
  828. end
  829. v.Value = '龍Attack2'
  830. v.Name = "Rush2"
  831. if game.ReplicatedStorage.Styles.Rush:FindFirstChild("Rush3") then
  832. v = game.ReplicatedStorage.Styles.Rush["Rush3"]
  833.     else
  834. v = Instance.new("StringValue", game.ReplicatedStorage.Styles.Rush)
  835. end
  836. v.Value = '龍Attack3'
  837. v.Name = "Rush3"
  838. if game.ReplicatedStorage.Styles.Rush:FindFirstChild("Rush4") then
  839. v = game.ReplicatedStorage.Styles.Rush["Rush4"]
  840.     else
  841. v = Instance.new("StringValue", game.ReplicatedStorage.Styles.Rush)
  842. end
  843. v.Value = '龍Attack1'
  844. v.Name = "Rush4"
  845. if game.ReplicatedStorage.Styles.Rush:FindFirstChild("Rush5") then
  846. v = game.ReplicatedStorage.Styles.Rush["Rush5"]
  847.     else
  848. v = Instance.new("StringValue", game.ReplicatedStorage.Styles.Rush)
  849. end
  850. v.Value = '龍Attack2'
  851. v.Name = "Rush5"
  852. if game.ReplicatedStorage.Styles.Rush:FindFirstChild("Rush6") then
  853. v = game.ReplicatedStorage.Styles.Rush["Rush6"]
  854.     else
  855. v = Instance.new("StringValue", game.ReplicatedStorage.Styles.Rush)
  856. end
  857. v.Value = '龍Attack3'
  858. v.Name = "Rush6"
  859. if game.ReplicatedStorage.Styles.Rush:FindFirstChild("Rush7") then
  860. v = game.ReplicatedStorage.Styles.Rush["Rush7"]
  861.     else
  862. v = Instance.new("StringValue", game.ReplicatedStorage.Styles.Rush)
  863. end
  864. v.Value = '龍Attack1'
  865. v.Name = "Rush7"
  866. if game.ReplicatedStorage.Styles.Rush:FindFirstChild("Rush8") then
  867. v = game.ReplicatedStorage.Styles.Rush["Rush8"]
  868.     else
  869. v = Instance.new("StringValue", game.ReplicatedStorage.Styles.Rush)
  870. end
  871. v.Value = '龍Attack4'
  872. v.Name = "Rush8"
  873. if game.ReplicatedStorage.Styles.Rush:FindFirstChild("Strike2") then
  874. v = game.ReplicatedStorage.Styles.Rush["Strike2"]
  875.     else
  876. v = Instance.new("StringValue", game.ReplicatedStorage.Styles.Rush)
  877. end
  878. v.Value = 'RStrike2'
  879. v.Name = "Strike2"
  880. if game.ReplicatedStorage.Styles.Rush:FindFirstChild("Strike3") then
  881. v = game.ReplicatedStorage.Styles.Rush["Strike3"]
  882.     else
  883. v = Instance.new("StringValue", game.ReplicatedStorage.Styles.Rush)
  884. end
  885. v.Value = '龍2Strike1'
  886. v.Name = "Strike3"
  887. if game.ReplicatedStorage.Styles.Rush:FindFirstChild("Strike4") then
  888. v = game.ReplicatedStorage.Styles.Rush["Strike4"]
  889.     else
  890. v = Instance.new("StringValue", game.ReplicatedStorage.Styles.Rush)
  891. end
  892. v.Value = '龍Strike5'
  893. v.Name = "Strike4"
  894. if game.ReplicatedStorage.Styles.Rush:FindFirstChild("Strike5") then
  895. v = game.ReplicatedStorage.Styles.Rush["Strike5"]
  896.     else
  897. v = Instance.new("StringValue", game.ReplicatedStorage.Styles.Rush)
  898. end
  899. v.Value = 'BStrike5'
  900. v.Name = "Strike5"
  901. if game.ReplicatedStorage.Styles.Rush:FindFirstChild("Strike6") then
  902. v = game.ReplicatedStorage.Styles.Rush["Strike6"]
  903.     else
  904. v = Instance.new("StringValue", game.ReplicatedStorage.Styles.Rush)
  905. end
  906. v.Value = 'BStrike4'
  907. v.Name = "Strike6"
  908. if game.ReplicatedStorage.Styles.Rush:FindFirstChild("Strike7") then
  909. v = game.ReplicatedStorage.Styles.Rush["Strike7"]
  910.     else
  911. v = Instance.new("StringValue", game.ReplicatedStorage.Styles.Rush)
  912. end
  913. v.Value = 'B2Strike4'
  914. v.Name = "Strike7"
  915. if game.ReplicatedStorage.Styles.Rush:FindFirstChild("Strike8") then
  916. v = game.ReplicatedStorage.Styles.Rush["Strike8"]
  917.     else
  918. v = Instance.new("StringValue", game.ReplicatedStorage.Styles.Rush)
  919. end
  920. v.Value = 'B2Strike3'
  921. v.Name = "Strike8"
  922. if game.ReplicatedStorage.Styles.Rush:FindFirstChild("Strike9") then
  923. v = game.ReplicatedStorage.Styles.Rush["Strike9"]
  924.     else
  925. v = Instance.new("StringValue", game.ReplicatedStorage.Styles.Rush)
  926. end
  927. v.Value = '龍2Strike4'
  928. v.Name = "Strike9"
  929. if game.ReplicatedStorage.Styles.Rush:FindFirstChild("Rush1") then
  930. v = game.ReplicatedStorage.Styles.Rush["Rush1"]
  931.     else
  932. v = Instance.new("StringValue", game.ReplicatedStorage.Styles.Rush)
  933. end
  934. v.Value = '龍Attack1'
  935. v.Name = "Rush1"
  936. if game.ReplicatedStorage.Styles.Rush:FindFirstChild("Strike1") then
  937. v = game.ReplicatedStorage.Styles.Rush["Strike1"]
  938.     else
  939. v = Instance.new("StringValue", game.ReplicatedStorage.Styles.Rush)
  940. end
  941. v.Value = 'B2Strike1'
  942. v.Name = "Strike1"
  943. if game.ReplicatedStorage.Styles.Rush:FindFirstChild("H_Running4") then
  944. v = game.ReplicatedStorage.Styles.Rush["H_Running4"]
  945.     else
  946. v = Instance.new("StringValue", game.ReplicatedStorage.Styles.Rush)
  947. end
  948. v.Value = 'H_Terror'
  949. v.Name = "H_Running4"
  950. if game.ReplicatedStorage.Styles.Rush:FindFirstChild("H_AirFallen") then
  951. v = game.ReplicatedStorage.Styles.Rush["H_AirFallen"]
  952.     else
  953. v = Instance.new("StringValue", game.ReplicatedStorage.Styles.Rush)
  954. end
  955. v.Value = 'H_Whirl'
  956. v.Name = "H_AirFallen"
  957. if game.ReplicatedStorage.Styles.Rush:FindFirstChild("GrabStrike") then
  958. v = game.ReplicatedStorage.Styles.Rush["GrabStrike"]
  959.     else
  960. v = Instance.new("StringValue", game.ReplicatedStorage.Styles.Rush)
  961. end
  962. v.Value = 'T_CounterQuickstep'
  963. v.Name = "GrabStrike"
  964. if game.ReplicatedStorage.Styles.Rush.GrabStrike:FindFirstChild("Ability") then
  965. v = game.ReplicatedStorage.Styles.Rush.GrabStrike["Ability"]
  966.     else
  967. v = Instance.new("StringValue", game.ReplicatedStorage.Styles.Rush.GrabStrike)
  968. end
  969. v.Value = 'Counter Quickstep'
  970. v.Name = "Ability"
  971. if game.ReplicatedStorage.Styles.Rush:FindFirstChild("H_FallenDown") then
  972. v = game.ReplicatedStorage.Styles.Rush["H_FallenDown"]
  973.     else
  974. v = Instance.new("StringValue", game.ReplicatedStorage.Styles.Rush)
  975. end
  976. v.Value = 'H_FallenKick'
  977. v.Name = "H_FallenDown"
  978. if game.ReplicatedStorage.Styles.Rush:FindFirstChild("H_EvadedF") then
  979. v = game.ReplicatedStorage.Styles.Rush["H_EvadedF"]
  980.     else
  981. v = Instance.new("StringValue", game.ReplicatedStorage.Styles.Rush)
  982. end
  983. v.Value = 'H_FastFootworkFront'
  984. v.Name = "H_EvadedF"
  985. if game.ReplicatedStorage.Styles.Rush:FindFirstChild("EvadeF") then
  986. v = game.ReplicatedStorage.Styles.Rush["EvadeF"]
  987.     else
  988. v = Instance.new("Animation", game.ReplicatedStorage.Styles.Rush)
  989. end
  990.  
  991. v.AnimationId = "rbxassetid://11710466763"
  992. v.Name = "EvadeF"
  993. if game.ReplicatedStorage.Styles.Rush:FindFirstChild("EvadeL") then
  994. v = game.ReplicatedStorage.Styles.Rush["EvadeL"]
  995.     else
  996. v = Instance.new("Animation", game.ReplicatedStorage.Styles.Rush)
  997. end
  998.  
  999. v.AnimationId = "rbxassetid://11710468004"
  1000. v.Name = "EvadeL"
  1001. if game.ReplicatedStorage.Styles.Rush:FindFirstChild("EvadeR") then
  1002. v = game.ReplicatedStorage.Styles.Rush["EvadeR"]
  1003.     else
  1004. v = Instance.new("Animation", game.ReplicatedStorage.Styles.Rush)
  1005. end
  1006.  
  1007. v.AnimationId = "rbxassetid://11710467557"
  1008. v.Name = "EvadeR"
  1009. if game.ReplicatedStorage.Styles.Rush:FindFirstChild("EvadeB") then
  1010. v = game.ReplicatedStorage.Styles.Rush["EvadeB"]
  1011.     else
  1012. v = Instance.new("Animation", game.ReplicatedStorage.Styles.Rush)
  1013. end
  1014.  
  1015. v.AnimationId = "rbxassetid://11710468479"
  1016. v.Name = "EvadeB"
  1017. if game.ReplicatedStorage.Styles.Rush:FindFirstChild("EvadeCR") then
  1018. v = game.ReplicatedStorage.Styles.Rush["EvadeCR"]
  1019.     else
  1020. v = Instance.new("Animation", game.ReplicatedStorage.Styles.Rush)
  1021. end
  1022.  
  1023. v.AnimationId = "rbxassetid://11710568545"
  1024. v.Name = "EvadeCR"
  1025. if game.ReplicatedStorage.Styles.Rush:FindFirstChild("EvadeCL") then
  1026. v = game.ReplicatedStorage.Styles.Rush["EvadeCL"]
  1027.     else
  1028. v = Instance.new("Animation", game.ReplicatedStorage.Styles.Rush)
  1029. end
  1030.  
  1031. v.AnimationId = "rbxassetid://11710568875"
  1032. v.Name = "EvadeCL"
  1033. if game.ReplicatedStorage.Styles.Rush:FindFirstChild("EvadeQCB") then
  1034. v = game.ReplicatedStorage.Styles.Rush["EvadeQCB"]
  1035.     else
  1036. v = Instance.new("Animation", game.ReplicatedStorage.Styles.Rush)
  1037. end
  1038.  
  1039. v.AnimationId = "rbxassetid://11632563534"
  1040. v.Name = "EvadeQCB"
  1041. if game.ReplicatedStorage.Styles.Rush:FindFirstChild("EvadeQCF") then
  1042. v = game.ReplicatedStorage.Styles.Rush["EvadeQCF"]
  1043.     else
  1044. v = Instance.new("Animation", game.ReplicatedStorage.Styles.Rush)
  1045. end
  1046.  
  1047. v.AnimationId = "rbxassetid://11632565056"
  1048. v.Name = "EvadeQCF"
  1049. if game.ReplicatedStorage.Styles.Rush:FindFirstChild("EvadeQCL") then
  1050. v = game.ReplicatedStorage.Styles.Rush["EvadeQCL"]
  1051.     else
  1052. v = Instance.new("Animation", game.ReplicatedStorage.Styles.Rush)
  1053. end
  1054.  
  1055. v.AnimationId = "rbxassetid://11632564616"
  1056. v.Name = "EvadeQCL"
  1057. if game.ReplicatedStorage.Styles.Rush:FindFirstChild("EvadeQCR") then
  1058. v = game.ReplicatedStorage.Styles.Rush["EvadeQCR"]
  1059.     else
  1060. v = Instance.new("Animation", game.ReplicatedStorage.Styles.Rush)
  1061. end
  1062.  
  1063. v.AnimationId = "rbxassetid://11632564233"
  1064. v.Name = "EvadeQCR"
  1065. if game.ReplicatedStorage.Styles.Rush:FindFirstChild("EvadeCF") then
  1066. v = game.ReplicatedStorage.Styles.Rush["EvadeCF"]
  1067.     else
  1068. v = Instance.new("Animation", game.ReplicatedStorage.Styles.Rush)
  1069. end
  1070.  
  1071. v.AnimationId = "rbxassetid://11716395378"
  1072. v.Name = "EvadeCF"
  1073. if game.ReplicatedStorage.Styles.Rush:FindFirstChild("EvadeCB") then
  1074. v = game.ReplicatedStorage.Styles.Rush["EvadeCB"]
  1075.     else
  1076. v = Instance.new("Animation", game.ReplicatedStorage.Styles.Rush)
  1077. end
  1078.  
  1079. v.AnimationId = "rbxassetid://11716396028"
  1080. v.Name = "EvadeCB"
  1081. if game.ReplicatedStorage.Styles.Rush:FindFirstChild("Block") then
  1082. v = game.ReplicatedStorage.Styles.Rush["Block"]
  1083.     else
  1084. v = Instance.new("Animation", game.ReplicatedStorage.Styles.Rush)
  1085. end
  1086.  
  1087. v.AnimationId = "rbxassetid://11776345813"
  1088. v.Name = "Block"
  1089. if game.ReplicatedStorage.Styles.Rush:FindFirstChild("H_EvadedR") then
  1090. v = game.ReplicatedStorage.Styles.Rush["H_EvadedR"]
  1091.     else
  1092. v = Instance.new("StringValue", game.ReplicatedStorage.Styles.Rush)
  1093. end
  1094. v.Value = 'H_FastFootworkRight'
  1095. v.Name = "H_EvadedR"
  1096. if game.ReplicatedStorage.Styles.Rush:FindFirstChild("H_EvadedL") then
  1097. v = game.ReplicatedStorage.Styles.Rush["H_EvadedL"]
  1098.     else
  1099. v = Instance.new("StringValue", game.ReplicatedStorage.Styles.Rush)
  1100. end
  1101. v.Value = 'H_FastFootworkLeft'
  1102. v.Name = "H_EvadedL"
  1103. if game.ReplicatedStorage.Styles.Rush:FindFirstChild("Idle") then
  1104. v = game.ReplicatedStorage.Styles.Rush["Idle"]
  1105.     else
  1106. v = Instance.new("Animation", game.ReplicatedStorage.Styles.Rush)
  1107. end
  1108.  
  1109. v.AnimationId = "rbxassetid://8493751059"
  1110. v.Name = "Idle"
  1111. if game.ReplicatedStorage.Styles.Rush.Idle:FindFirstChild("Core") then
  1112. v = game.ReplicatedStorage.Styles.Rush.Idle["Core"]
  1113.     else
  1114. v = Instance.new("Folder", game.ReplicatedStorage.Styles.Rush.Idle)
  1115. end
  1116. v.Name = "Core"
  1117. if game.ReplicatedStorage.Styles.Rush:FindFirstChild("Hit1Block") then
  1118. v = game.ReplicatedStorage.Styles.Rush["Hit1Block"]
  1119.     else
  1120. v = Instance.new("Animation", game.ReplicatedStorage.Styles.Rush)
  1121. end
  1122.  
  1123. v.AnimationId = "rbxassetid://11959653217"
  1124. v.Name = "Hit1Block"
  1125. if game.ReplicatedStorage.Styles.Rush:FindFirstChild("Hit2Block") then
  1126. v = game.ReplicatedStorage.Styles.Rush["Hit2Block"]
  1127.     else
  1128. v = Instance.new("Animation", game.ReplicatedStorage.Styles.Rush)
  1129. end
  1130.  
  1131. v.AnimationId = "rbxassetid://11959653217"
  1132. v.Name = "Hit2Block"
  1133. if game.ReplicatedStorage.Styles.Rush:FindFirstChild("Run") then
  1134. v = game.ReplicatedStorage.Styles.Rush["Run"]
  1135.     else
  1136. v = Instance.new("Animation", game.ReplicatedStorage.Styles.Rush)
  1137. end
  1138.  
  1139. v.AnimationId = "rbxassetid://13731641248"
  1140. v.Name = "Run"
  1141. -------------------------------Beast--------------------------------------
  1142. if game.ReplicatedStorage.Styles:FindFirstChild("Beast") then
  1143. v = game.ReplicatedStorage.Styles["Beast"]
  1144.     else
  1145. v = Instance.new("Folder", game.ReplicatedStorage.Styles)
  1146. end
  1147. v.Name = "Beast"
  1148. if game.ReplicatedStorage.Styles.Beast:FindFirstChild("Rush1") then
  1149. v = game.ReplicatedStorage.Styles.Beast["Rush1"]
  1150.     else
  1151. v = Instance.new("StringValue", game.ReplicatedStorage.Styles.Beast)
  1152. end
  1153. v.Value = 'BTPunch1'
  1154. v.Name = "Rush1"
  1155. if game.ReplicatedStorage.Styles.Beast:FindFirstChild("Speed") then
  1156. v = game.ReplicatedStorage.Styles.Beast["Speed"]
  1157.     else
  1158. v = Instance.new("NumberValue", game.ReplicatedStorage.Styles.Beast)
  1159. end
  1160. v.Value = 0.75
  1161. v.Name = "Speed"
  1162. if game.ReplicatedStorage.Styles.Beast:FindFirstChild("StartBlock") then
  1163. v = game.ReplicatedStorage.Styles.Beast["StartBlock"]
  1164.     else
  1165. v = Instance.new("Animation", game.ReplicatedStorage.Styles.Beast)
  1166. end
  1167.  
  1168. v.AnimationId = "rbxassetid://10920901524"
  1169. v.Name = "StartBlock"
  1170. if game.ReplicatedStorage.Styles.Beast:FindFirstChild("GuardGrabHit") then
  1171. v = game.ReplicatedStorage.Styles.Beast["GuardGrabHit"]
  1172.     else
  1173. v = Instance.new("StringValue", game.ReplicatedStorage.Styles.Beast)
  1174. end
  1175. v.Value = 'T_BearHug'
  1176. v.Name = "GuardGrabHit"
  1177. if game.ReplicatedStorage.Styles.Beast.GuardGrabHit:FindFirstChild("Ability") then
  1178. v = game.ReplicatedStorage.Styles.Beast.GuardGrabHit["Ability"]
  1179.     else
  1180. v = Instance.new("StringValue", game.ReplicatedStorage.Styles.Beast.GuardGrabHit)
  1181. end
  1182. v.Value = 'Bear Hug'
  1183. v.Name = "Ability"
  1184. if game.ReplicatedStorage.Styles.Beast:FindFirstChild("Rush2") then
  1185. v = game.ReplicatedStorage.Styles.Beast["Rush2"]
  1186.     else
  1187. v = Instance.new("StringValue", game.ReplicatedStorage.Styles.Beast)
  1188. end
  1189. v.Value = 'BTPunch2'
  1190. v.Name = "Rush2"
  1191. if game.ReplicatedStorage.Styles.Beast:FindFirstChild("Rush3") then
  1192. v = game.ReplicatedStorage.Styles.Beast["Rush3"]
  1193.     else
  1194. v = Instance.new("StringValue", game.ReplicatedStorage.Styles.Beast)
  1195. end
  1196. v.Value = 'BTPunch3'
  1197. v.Name = "Rush3"
  1198. if game.ReplicatedStorage.Styles.Beast:FindFirstChild("Color") then
  1199. v = game.ReplicatedStorage.Styles.Beast["Color"]
  1200.     else
  1201. v = Instance.new("Color3Value", game.ReplicatedStorage.Styles.Beast)
  1202. end
  1203. v.Value = Color3.fromRGB(255,211.00000262260437,50.000000819563866)
  1204. v.Name = "Color"
  1205. if game.ReplicatedStorage.Styles.Beast:FindFirstChild("H_LowHealthFallen") then
  1206. v = game.ReplicatedStorage.Styles.Beast["H_LowHealthFallen"]
  1207.     else
  1208. v = Instance.new("StringValue", game.ReplicatedStorage.Styles.Beast)
  1209. end
  1210. v.Value = 'H_FallenFinisher'
  1211. v.Name = "H_LowHealthFallen"
  1212. if game.ReplicatedStorage.Styles.Beast:FindFirstChild("LThrow") then
  1213. v = game.ReplicatedStorage.Styles.Beast["LThrow"]
  1214.     else
  1215. v = Instance.new("StringValue", game.ReplicatedStorage.Styles.Beast)
  1216. end
  1217. v.Value = 'T_LegToss'
  1218. v.Name = "LThrow"
  1219. if game.ReplicatedStorage.Styles.Beast:FindFirstChild("Strike1") then
  1220. v = game.ReplicatedStorage.Styles.Beast["Strike1"]
  1221.     else
  1222. v = Instance.new("StringValue", game.ReplicatedStorage.Styles.Beast)
  1223. end
  1224. v.Value = 'BTStrike1'
  1225. v.Name = "Strike1"
  1226. if game.ReplicatedStorage.Styles.Beast:FindFirstChild("Strike2") then
  1227. v = game.ReplicatedStorage.Styles.Beast["Strike2"]
  1228.     else
  1229. v = Instance.new("StringValue", game.ReplicatedStorage.Styles.Beast)
  1230. end
  1231. v.Value = 'BTStrike2'
  1232. v.Name = "Strike2"
  1233. if game.ReplicatedStorage.Styles.Beast:FindFirstChild("Strike3") then
  1234. v = game.ReplicatedStorage.Styles.Beast["Strike3"]
  1235.     else
  1236. v = Instance.new("StringValue", game.ReplicatedStorage.Styles.Beast)
  1237. end
  1238. v.Value = 'BTStrike3'
  1239. v.Name = "Strike3"
  1240. if game.ReplicatedStorage.Styles.Beast:FindFirstChild("Strike4") then
  1241. v = game.ReplicatedStorage.Styles.Beast["Strike4"]
  1242.     else
  1243. v = Instance.new("StringValue", game.ReplicatedStorage.Styles.Beast)
  1244. end
  1245. v.Value = 'BTStrike4'
  1246. v.Name = "Strike4"
  1247. if game.ReplicatedStorage.Styles.Beast:FindFirstChild("Grab") then
  1248. v = game.ReplicatedStorage.Styles.Beast["Grab"]
  1249.     else
  1250. v = Instance.new("StringValue", game.ReplicatedStorage.Styles.Beast)
  1251. end
  1252. v.Value = 'BGrab'
  1253. v.Name = "Grab"
  1254. if game.ReplicatedStorage.Styles.Beast:FindFirstChild("EvadeB") then
  1255. v = game.ReplicatedStorage.Styles.Beast["EvadeB"]
  1256.     else
  1257. v = Instance.new("Animation", game.ReplicatedStorage.Styles.Beast)
  1258. end
  1259.  
  1260. v.AnimationId = "rbxassetid://11614916809"
  1261. v.Name = "EvadeB"
  1262. if game.ReplicatedStorage.Styles.Beast:FindFirstChild("VisualName") then
  1263. v = game.ReplicatedStorage.Styles.Beast["VisualName"]
  1264.     else
  1265. v = Instance.new("StringValue", game.ReplicatedStorage.Styles.Beast)
  1266. end
  1267. v.Value = 'Beast'
  1268. v.Name = "VisualName"
  1269. if game.ReplicatedStorage.Styles.Beast:FindFirstChild("Throw") then
  1270. v = game.ReplicatedStorage.Styles.Beast["Throw"]
  1271.     else
  1272. v = Instance.new("StringValue", game.ReplicatedStorage.Styles.Beast)
  1273. end
  1274. v.Value = 'T_BeastToss'
  1275. v.Name = "Throw"
  1276. if game.ReplicatedStorage.Styles.Beast:FindFirstChild("EvadeR") then
  1277. v = game.ReplicatedStorage.Styles.Beast["EvadeR"]
  1278.     else
  1279. v = Instance.new("Animation", game.ReplicatedStorage.Styles.Beast)
  1280. end
  1281.  
  1282. v.AnimationId = "rbxassetid://8223592585"
  1283. v.Name = "EvadeR"
  1284. if game.ReplicatedStorage.Styles.Beast:FindFirstChild("H_GrabOnWall") then
  1285. v = game.ReplicatedStorage.Styles.Beast["H_GrabOnWall"]
  1286.     else
  1287. v = Instance.new("StringValue", game.ReplicatedStorage.Styles.Beast)
  1288. end
  1289. v.Value = 'H_WallSmack'
  1290. v.Name = "H_GrabOnWall"
  1291. if game.ReplicatedStorage.Styles.Beast:FindFirstChild("GrabCorpses") then
  1292. v = game.ReplicatedStorage.Styles.Beast["GrabCorpses"]
  1293.     else
  1294. v = Instance.new("Folder", game.ReplicatedStorage.Styles.Beast)
  1295. end
  1296. v.Name = "GrabCorpses"
  1297. if game.ReplicatedStorage.Styles.Beast:FindFirstChild("H_GrabStanding") then
  1298. v = game.ReplicatedStorage.Styles.Beast["H_GrabStanding"]
  1299.     else
  1300. v = Instance.new("StringValue", game.ReplicatedStorage.Styles.Beast)
  1301. end
  1302. v.Value = 'H_Piledriver'
  1303. v.Name = "H_GrabStanding"
  1304. if game.ReplicatedStorage.Styles.Beast:FindFirstChild("H_AbsorbBlock") then
  1305. v = game.ReplicatedStorage.Styles.Beast["H_AbsorbBlock"]
  1306.     else
  1307. v = Instance.new("StringValue", game.ReplicatedStorage.Styles.Beast)
  1308. end
  1309. v.Value = 'H_Torment'
  1310. v.Name = "H_AbsorbBlock"
  1311. if game.ReplicatedStorage.Styles.Beast:FindFirstChild("H_TwoHandeds") then
  1312. v = game.ReplicatedStorage.Styles.Beast["H_TwoHandeds"]
  1313.     else
  1314. v = Instance.new("StringValue", game.ReplicatedStorage.Styles.Beast)
  1315. end
  1316. v.Value = 'H_SelfDestruct'
  1317. v.Name = "H_TwoHandeds"
  1318. if game.ReplicatedStorage.Styles.Beast:FindFirstChild("H_GrabLeg") then
  1319. v = game.ReplicatedStorage.Styles.Beast["H_GrabLeg"]
  1320.     else
  1321. v = Instance.new("StringValue", game.ReplicatedStorage.Styles.Beast)
  1322. end
  1323. v.Value = 'H_Swing'
  1324. v.Name = "H_GrabLeg"
  1325. if game.ReplicatedStorage.Styles.Beast:FindFirstChild("Taunt") then
  1326. v = game.ReplicatedStorage.Styles.Beast["Taunt"]
  1327.     else
  1328. v = Instance.new("StringValue", game.ReplicatedStorage.Styles.Beast)
  1329. end
  1330. v.Value = 'BeastTaunt'
  1331. v.Name = "Taunt"
  1332. if game.ReplicatedStorage.Styles.Beast:FindFirstChild("Hit2Block") then
  1333. v = game.ReplicatedStorage.Styles.Beast["Hit2Block"]
  1334.     else
  1335. v = Instance.new("Animation", game.ReplicatedStorage.Styles.Beast)
  1336. end
  1337.  
  1338. v.AnimationId = "rbxassetid://10920909417"
  1339. v.Name = "Hit2Block"
  1340. if game.ReplicatedStorage.Styles.Beast:FindFirstChild("EndBlock") then
  1341. v = game.ReplicatedStorage.Styles.Beast["EndBlock"]
  1342.     else
  1343. v = Instance.new("Animation", game.ReplicatedStorage.Styles.Beast)
  1344. end
  1345.  
  1346. v.AnimationId = "rbxassetid://10920912941"
  1347. v.Name = "EndBlock"
  1348. if game.ReplicatedStorage.Styles.Beast:FindFirstChild("Hit1Block") then
  1349. v = game.ReplicatedStorage.Styles.Beast["Hit1Block"]
  1350.     else
  1351. v = Instance.new("Animation", game.ReplicatedStorage.Styles.Beast)
  1352. end
  1353.  
  1354. v.AnimationId = "rbxassetid://10920902836"
  1355. v.Name = "Hit1Block"
  1356. if game.ReplicatedStorage.Styles.Beast:FindFirstChild("Block") then
  1357. v = game.ReplicatedStorage.Styles.Beast["Block"]
  1358.     else
  1359. v = Instance.new("Animation", game.ReplicatedStorage.Styles.Beast)
  1360. end
  1361.  
  1362. v.AnimationId = "rbxassetid://10920916315"
  1363. v.Name = "Block"
  1364. if game.ReplicatedStorage.Styles.Beast:FindFirstChild("H_GrabOnFallen") then
  1365. v = game.ReplicatedStorage.Styles.Beast["H_GrabOnFallen"]
  1366.     else
  1367. v = Instance.new("StringValue", game.ReplicatedStorage.Styles.Beast)
  1368. end
  1369. v.Value = 'H_LobCrush'
  1370. v.Name = "H_GrabOnFallen"
  1371. if game.ReplicatedStorage.Styles.Beast:FindFirstChild("H_Stunned") then
  1372. v = game.ReplicatedStorage.Styles.Beast["H_Stunned"]
  1373.     else
  1374. v = Instance.new("StringValue", game.ReplicatedStorage.Styles.Beast)
  1375. end
  1376. v.Value = 'H_Knockout'
  1377. v.Name = "H_Stunned"
  1378. if game.ReplicatedStorage.Styles.Beast:FindFirstChild("HThrow") then
  1379. v = game.ReplicatedStorage.Styles.Beast["HThrow"]
  1380.     else
  1381. v = Instance.new("StringValue", game.ReplicatedStorage.Styles.Beast)
  1382. end
  1383. v.Value = 'T_HeavyToss'
  1384. v.Name = "HThrow"
  1385. if game.ReplicatedStorage.Styles.Beast:FindFirstChild("LHThrow") then
  1386. v = game.ReplicatedStorage.Styles.Beast["LHThrow"]
  1387.     else
  1388. v = Instance.new("StringValue", game.ReplicatedStorage.Styles.Beast)
  1389. end
  1390. v.Value = 'T_BHeavyToss'
  1391. v.Name = "LHThrow"
  1392. if game.ReplicatedStorage.Styles.Beast:FindFirstChild("H_FallenDown") then
  1393. v = game.ReplicatedStorage.Styles.Beast["H_FallenDown"]
  1394.     else
  1395. v = Instance.new("StringValue", game.ReplicatedStorage.Styles.Beast)
  1396. end
  1397. v.Value = 'H_FallenGrate'
  1398. v.Name = "H_FallenDown"
  1399. if game.ReplicatedStorage.Styles.Beast:FindFirstChild("H_Fallen") then
  1400. v = game.ReplicatedStorage.Styles.Beast["H_Fallen"]
  1401.     else
  1402. v = Instance.new("StringValue", game.ReplicatedStorage.Styles.Beast)
  1403. end
  1404. v.Value = 'H_FallenFinisher'
  1405. v.Name = "H_Fallen"
  1406. if game.ReplicatedStorage.Styles.Beast:FindFirstChild("EvadeF") then
  1407. v = game.ReplicatedStorage.Styles.Beast["EvadeF"]
  1408.     else
  1409. v = Instance.new("Animation", game.ReplicatedStorage.Styles.Beast)
  1410. end
  1411.  
  1412. v.AnimationId = "rbxassetid://11614916023"
  1413. v.Name = "EvadeF"
  1414. if game.ReplicatedStorage.Styles.Beast:FindFirstChild("EvadeL") then
  1415. v = game.ReplicatedStorage.Styles.Beast["EvadeL"]
  1416.     else
  1417. v = Instance.new("Animation", game.ReplicatedStorage.Styles.Beast)
  1418. end
  1419.  
  1420. v.AnimationId = "rbxassetid://8223592585"
  1421. v.Name = "EvadeL"
  1422. if game.ReplicatedStorage.Styles.Beast:FindFirstChild("Idle") then
  1423. v = game.ReplicatedStorage.Styles.Beast["Idle"]
  1424.     else
  1425. v = Instance.new("Animation", game.ReplicatedStorage.Styles.Beast)
  1426. end
  1427.  
  1428. v.AnimationId = "rbxassetid://13794434071"
  1429. v.Name = "Idle"
  1430. if game.ReplicatedStorage.Styles.Beast.Idle:FindFirstChild("Core") then
  1431. v = game.ReplicatedStorage.Styles.Beast.Idle["Core"]
  1432.     else
  1433. v = Instance.new("Folder", game.ReplicatedStorage.Styles.Beast.Idle)
  1434. end
  1435. v.Name = "Core"
  1436. if game.ReplicatedStorage.Styles.Beast:FindFirstChild("H_GrabStanding3") then
  1437. v = game.ReplicatedStorage.Styles.Beast["H_GrabStanding3"]
  1438.     else
  1439. v = Instance.new("StringValue", game.ReplicatedStorage.Styles.Beast)
  1440. end
  1441. v.Value = 'H_Entangle'
  1442. v.Name = "H_GrabStanding3"
  1443. if game.ReplicatedStorage.Styles.Beast:FindFirstChild("H_StunnedFront") then
  1444. v = game.ReplicatedStorage.Styles.Beast["H_StunnedFront"]
  1445.     else
  1446. v = Instance.new("StringValue", game.ReplicatedStorage.Styles.Beast)
  1447. end
  1448. v.Value = 'H_KnockoutFront'
  1449. v.Name = "H_StunnedFront"
  1450. if game.ReplicatedStorage.Moves["龍TigerDrop"]:FindFirstChild("Anim") then
  1451. v = game.ReplicatedStorage.Moves["龍TigerDrop"]["Anim"]
  1452.     else
  1453. v = Instance.new("Animation", game.ReplicatedStorage.Moves["龍TigerDrop"])
  1454. end
  1455. v.AnimationId = "rbxassetid://12338275115"
  1456. v.Name = "Anim"
  1457. if game.ReplicatedStorage.Moves["龍TigerDrop"]:FindFirstChild("ForceSF") then
  1458. v = game.ReplicatedStorage.Moves["龍TigerDrop"]["ForceSF"]
  1459.     else
  1460. v = Instance.new("StringValue", game.ReplicatedStorage.Moves["龍TigerDrop"])
  1461. end
  1462. v.Value = '0.1'
  1463. v.Name = "ForceSF"
  1464. if game.ReplicatedStorage.Moves["TigerDrop"]:FindFirstChild("Anim") then
  1465. v = game.ReplicatedStorage.Moves["TigerDrop"]["Anim"]
  1466.     else
  1467. v = Instance.new("Animation", game.ReplicatedStorage.Moves["TigerDrop"])
  1468. end
  1469. v.AnimationId = "rbxassetid://12338275115"
  1470. v.Name = "Anim"
  1471. if game.ReplicatedStorage.Moves["TigerDrop"]:FindFirstChild("HitDur") then
  1472. v = game.ReplicatedStorage.Moves["TigerDrop"]["HitDur"]
  1473.     else
  1474. v = Instance.new("NumberValue", game.ReplicatedStorage.Moves["TigerDrop"])
  1475. end
  1476. v.Value = 0.3
  1477. v.Name = "HitDur"
  1478. if game.ReplicatedStorage.Moves["TigerDrop"]:FindFirstChild("AniSpeed") then
  1479. v = game.ReplicatedStorage.Moves["TigerDrop"]["AniSpeed"]
  1480.     else
  1481. v = Instance.new("NumberValue", game.ReplicatedStorage.Moves["TigerDrop"])
  1482. end
  1483. v.Value = 1
  1484. v.Name = "AniSpeed"
  1485. if game.ReplicatedStorage.Moves.H_UltimateEssence:FindFirstChild("MoveName") then
  1486. v = game.ReplicatedStorage.Moves.H_UltimateEssence["MoveName"]
  1487.     else
  1488. v = Instance.new("StringValue", game.ReplicatedStorage.Moves.H_UltimateEssence)
  1489. end
  1490. v.Value = 'Ultimate Essence '
  1491. v.Name = "MoveName"
  1492. if game.ReplicatedStorage.Styles.Brawler:FindFirstChild("EvadeF") then
  1493. v = game.ReplicatedStorage.Styles.Brawler["EvadeF"]
  1494.     else
  1495. v = Instance.new("Animation", game.ReplicatedStorage.Styles.Brawler)
  1496. end
  1497.  
  1498. v.AnimationId = "rbxassetid://11614916023"
  1499. v.Name = "EvadeF"
  1500. if game.ReplicatedStorage.Styles.Brawler:FindFirstChild("EvadeL") then
  1501. v = game.ReplicatedStorage.Styles.Brawler["EvadeL"]
  1502.     else
  1503. v = Instance.new("Animation", game.ReplicatedStorage.Styles.Brawler)
  1504. end
  1505.  
  1506. v.AnimationId = "rbxassetid://11710468004"
  1507. v.Name = "EvadeL"
  1508. if game.ReplicatedStorage.Styles.Brawler:FindFirstChild("EvadeR") then
  1509. v = game.ReplicatedStorage.Styles.Brawler["EvadeR"]
  1510.     else
  1511. v = Instance.new("Animation", game.ReplicatedStorage.Styles.Brawler)
  1512. end
  1513.  
  1514. v.AnimationId = "rbxassetid://11710467557"
  1515. v.Name = "EvadeR"
  1516. if game.ReplicatedStorage.Styles.Brawler:FindFirstChild("EvadeB") then
  1517. v = game.ReplicatedStorage.Styles.Brawler["EvadeB"]
  1518.     else
  1519. v = Instance.new("Animation", game.ReplicatedStorage.Styles.Brawler)
  1520. end
  1521.  
  1522. v.AnimationId = "rbxassetid://11614916809"
  1523. v.Name = "EvadeB"
  1524. if game.ReplicatedStorage.Styles.Brawler:FindFirstChild("H_EvadedF") then
  1525. v = game.ReplicatedStorage.Styles.Brawler["H_EvadedF"]
  1526.     else
  1527. v = Instance.new("StringValue", game.ReplicatedStorage.Styles.Brawler)
  1528. end
  1529. v.Value = 'H_FastFootworkFront'
  1530. v.Name = "H_EvadedF"
  1531. if game.ReplicatedStorage.Styles.Brawler:FindFirstChild("H_EvadedR") then
  1532. v = game.ReplicatedStorage.Styles.Brawler["H_EvadedR"]
  1533.     else
  1534. v = Instance.new("StringValue", game.ReplicatedStorage.Styles.Brawler)
  1535. end
  1536. v.Value = 'H_FastFootworkRight'
  1537. v.Name = "H_EvadedR"
  1538. if game.ReplicatedStorage.Styles.Brawler:FindFirstChild("H_EvadedL") then
  1539. v = game.ReplicatedStorage.Styles.Brawler["H_EvadedL"]
  1540.     else
  1541. v = Instance.new("StringValue", game.ReplicatedStorage.Styles.Brawler)
  1542. end
  1543. v.Value = 'H_FastFootworkLeft'
  1544. v.Name = "H_EvadedL"
  1545.  
  1546. sendNotification("Attacks Loaded")
  1547.  
  1548. game.ReplicatedStorage.Sounds.Yell.Value = "rbxassetid://7959271972"
  1549.  
  1550. local function playsound(id)
  1551.     local sfx = Instance.new("Sound", workspace)
  1552.     sfx.SoundId = "rbxassetid://"..tostring(id)
  1553.  
  1554.     game:GetService("SoundService"):PlayLocalSound(sfx)
  1555.  
  1556.     spawn(function()
  1557.         task.wait(sfx.TimeLength)
  1558.         sfx:Destroy()
  1559.     end)
  1560. end
  1561.  
  1562. function playticksound()
  1563.     local sfx = Instance.new("Sound", workspace)
  1564.     sfx.SoundId = "rbxassetid://4843088994"
  1565.  
  1566.     game:GetService("SoundService"):PlayLocalSound(sfx)
  1567.  
  1568.     spawn(function()
  1569.         task.wait(2)
  1570.         sfx:Destroy()
  1571.     end)
  1572. end
  1573.  
  1574. local function play_ingamesound(sfxname)
  1575.     local v = game.ReplicatedStorage.Sounds:FindFirstChild(sfxname)
  1576.     local sfx = Instance.new("Sound", nil)
  1577.     local id = v.Value
  1578.  
  1579.     sfx.SoundId = id
  1580.  
  1581.     for i,v in v:GetChildren() do
  1582.         sfx[v.Name] = v.Value
  1583.     end
  1584.  
  1585.     game.SoundService:PlayLocalSound(sfx)
  1586.     task.delay(15, function()
  1587.         sfx:Destroy()
  1588.     end)
  1589. end
  1590.  
  1591. local Player = game.Players.LocalPlayer
  1592. local Rep = game.ReplicatedStorage
  1593. local Char = Player.Character
  1594. local Main = Player.PlayerGui.Interface.Battle.Main
  1595.    
  1596. Main.HeatMove.TextLabel:GetPropertyChangedSignal("Text"):Connect(function()
  1597.     if Main.HeatMove.TextLabel.Text == "Ultimate Essence" then
  1598.         Main.HeatMove.TextLabel.Text = Rep.Moves.H_UltimateEssence.MoveName.Value
  1599.         local Anim = Char.Humanoid:LoadAnimation(Rep.Moves.H_UltimateEssence.Anim)
  1600.         Anim.Priority = Enum.AnimationPriority.Action4
  1601.         Anim:AdjustSpeed(0.9)
  1602.         Anim:Play()
  1603.         task.wait(1)
  1604.         play_ingamesound("MassiveSlap")
  1605.         task.wait(0.3)
  1606.         Anim:Destroy()
  1607.     end
  1608. end)
  1609.  
  1610. local Player = game.Players.LocalPlayer
  1611. local Rep = game.ReplicatedStorage
  1612. local Char = Player.Character
  1613. local Main = Player.PlayerGui.Interface.Battle.Main
  1614.  
  1615. Main.HeatMove.TextLabel:GetPropertyChangedSignal("Text"):Connect(function()
  1616.     if Main.HeatMove.TextLabel.Text == "Essence of Fast Footwork [Back]" then
  1617.         Main.HeatMove.TextLabel.Text = Rep.Moves.H_SumoSlap.MoveName.Value
  1618.         local Anim = Char.Humanoid:LoadAnimation(Rep.Moves.H_SumoSlap.Anim)
  1619.         Anim.Priority = Enum.AnimationPriority.Action4
  1620.         Anim:AdjustSpeed(0.9)
  1621.         Anim:Play()
  1622.         play_ingamesound("Teleport")
  1623.         task.wait(0.1)
  1624.         play_ingamesound("Slap")
  1625.         task.wait(0.45)
  1626.         play_ingamesound("Slap")
  1627.         task.wait(0.45)
  1628.         play_ingamesound("Slap")
  1629.         task.wait(0.9)
  1630.         play_ingamesound("MassiveSlap")
  1631.         Anim:Destroy()
  1632.     end
  1633. end)
  1634.  
  1635. local DragonText = "Dragon"
  1636. local DragonColor = Color3.new(0.99, 0.05, 0.1)
  1637. local DragonSequence = ColorSequence.new({ColorSequenceKeypoint.new(0, brawler.Color.Value), ColorSequenceKeypoint.new(1, brawler.Color.Value)})
  1638.  
  1639. local function change_color()
  1640.     if status.Style.Value == "Brawler" then
  1641.         local char = plr.Character
  1642.         char.HumanoidRootPart.Fire_Main.Color = DragonSequence
  1643.         char.HumanoidRootPart.Fire_Secondary.Color = DragonSequence
  1644.         char.HumanoidRootPart.Fire_Main.Rate = status.Heat.Value >= 100 and 115 or status.Heat.Value >= 75 and 85 or 80
  1645.         char.HumanoidRootPart.Fire_Secondary.Rate = status.Heat.Value >= 100 and 90 or status.Heat.Value >= 75 and 80 or 70
  1646.         char.HumanoidRootPart.Lines1.Color = DragonSequence
  1647.         char.HumanoidRootPart.Lines1.Rate = status.Heat.Value >= 100 and 60 or status.Heat.Value >= 75 and 40 or 20
  1648.         char.HumanoidRootPart.Lines2.Color = DragonSequence
  1649.         char.HumanoidRootPart.Lines2.Rate = status.Heat.Value >= 100 and 60 or status.Heat.Value >= 75 and 40 or 20
  1650.         char.HumanoidRootPart.Sparks.Color = DragonSequence
  1651.         if not char.HumanoidRootPart.TimeFor.Enabled then
  1652.             char.HumanoidRootPart.TimeFor.Color = DragonSequence
  1653.         end
  1654.  
  1655.         char.UpperTorso["r2f_aura_burst"].Lines1.Color = DragonSequence
  1656.         char.UpperTorso["r2f_aura_burst"].Lines2.Color = DragonSequence
  1657.         char.UpperTorso["r2f_aura_burst"].Flare.Color = DragonSequence
  1658.         char.UpperTorso["r2f_aura_burst"].Lines1.Enabled = showMaxHeatEffect()
  1659.         char.UpperTorso["r2f_aura_burst"].Flare.Enabled = showMaxHeatEffect()
  1660.         char.UpperTorso["r2f_aura_burst"].Smoke.Color = DragonSequence
  1661.         char.UpperTorso.Evading.Color = DragonSequence
  1662.     end
  1663. end
  1664.  
  1665.        
  1666. local function FillHeat()
  1667.     local Event = game:GetService("ReplicatedStorage").Events.ME
  1668.  
  1669.     for i=1,6 do
  1670.         local A_1 =  {
  1671.             [1] = "heat",
  1672.             [2] = game:GetService("ReplicatedStorage").Moves.Taunt
  1673.         }
  1674.         Event:FireServer(A_1)
  1675.     end
  1676. end
  1677. game:GetService("RunService").RenderStepped:Connect(change_color)
  1678.  
  1679. if moves:FindFirstChild("龍TigerDrop") then
  1680.         moves:FindFirstChild("BRCounter2").Name = "FakeCounter2"
  1681.         moves:FindFirstChild("龍TigerDrop").Name = "BRCounter2"
  1682.         moves:FindFirstChild("BRCounter1").Name = "FakeCounter1"
  1683.         moves:FindFirstChild("BRGrab").Name = "FakeGrab"
  1684.  
  1685.         local ignore = Instance.new("Folder")
  1686.         ignore.Name = "IgnoreDmg"
  1687.         ignore.Parent = moves:FindFirstChild("BRCounter2")
  1688.  
  1689.         if not moves:FindFirstChild("BRCounter2"):FindFirstChild("HSize") then
  1690.             local n = Instance.new("NumberValue")
  1691.             n.Name = "HSize"
  1692.             n.Value = 2
  1693.             n.Parent = moves:FindFirstChild("BRCounter2")
  1694.         end
  1695.     end
  1696.  
  1697. function playticksound()
  1698.     local sfx = Instance.new("Sound", workspace)
  1699.     sfx.SoundId = "rbxassetid://4843088994"
  1700.  
  1701.     game:GetService("SoundService"):PlayLocalSound(sfx)
  1702.  
  1703.     spawn(function()
  1704.         task.wait(2)
  1705.         sfx:Destroy()
  1706.     end)
  1707. end
  1708.  
  1709. local uis = game:GetService("UserInputService")
  1710. local rushstyle = game.ReplicatedStorage.Styles.Rush
  1711. local brawlerstyle = game.ReplicatedStorage.Styles.Brawler
  1712. local beaststyle = game.ReplicatedStorage.Styles.Beast
  1713.  
  1714. local grabstrike = rushstyle:WaitForChild("GrabStrike"):Clone()
  1715. local guruparry = brawlerstyle:WaitForChild("GrabStrike")
  1716.  
  1717. sendNotification("Press X to swap counter step and parry on Dragon", color)
  1718.  
  1719. uis.InputBegan:Connect(function(key)
  1720.     if game.UserInputService:GetFocusedTextBox() == nil then
  1721.         if key.KeyCode == Enum.KeyCode.X then
  1722.             playticksound()
  1723.             if guruparry.Parent ~= nil then
  1724.                 guruparry.Parent = nil
  1725.                 grabstrike.Parent = brawlerstyle
  1726.                 sendNotification("Counter Quickstep Enabled", color)
  1727.                 else
  1728.             guruparry.Parent = brawlerstyle
  1729.                 grabstrike.Parent = nil
  1730.                 sendNotification("Parry Enabled", color)
  1731.             end
  1732.         end
  1733.     end
  1734. end)
  1735.  
  1736. task.wait(1)
  1737. sendNotification("Press [F] to instantly fill heat.")
  1738.  
  1739. game.UserInputService.InputBegan:Connect(function(key)
  1740.     if game.UserInputService:GetFocusedTextBox() == nil then
  1741.         if key.KeyCode == Enum.KeyCode.F then
  1742.             FillHeat()
  1743.         end
  1744.     end
  1745. end)
  1746.  
  1747. local function add_forcefield(duration)
  1748.     local p = game.Players.LocalPlayer
  1749.     local Status = p.Status
  1750.  
  1751.     local invun = game.ReplicatedStorage.Invulnerable:Clone()
  1752.     invun.Parent = Status
  1753.  
  1754.     if duration then
  1755.         spawn(function()
  1756.             task.wait(duration)
  1757.             invun:Destroy()
  1758.         end)
  1759.     end
  1760.  
  1761.     return invun
  1762. end
  1763.  
  1764. local function IsSpiritActive()
  1765.   return plr.Status.Health.Value <= plr.Status.MaxHealth.Value * 0.25
  1766. end
  1767.  
  1768. local function HealthChanged()
  1769.   -- runs everytime Health or MaxHealth changes
  1770.   if IsSpiritActive() then
  1771.       play_ingamesound("Yell")
  1772.     sendNotification("Red Dragon Spirit Activated")
  1773.     FillHeat()
  1774.     task.wait(0.5)
  1775.     add_forcefield(30)
  1776.     task.wait(0.5)
  1777.       else
  1778.   sendNotification("")
  1779.   end
  1780. end
  1781.  
  1782. plr.Status.MaxHealth.Changed:Connect(HealthChanged)
  1783. plr.Status.Health.Changed:Connect(HealthChanged)
  1784.  
  1785. local plr = game:GetService("Players").LocalPlayer
  1786. local pgui = plr.PlayerGui
  1787. local interf = pgui.Interface
  1788.  
  1789. local cframe = plr.Character.LowerTorso.CFrame
  1790.  
  1791. interf.Client.Disabled = true
  1792. task.wait()
  1793. interf.Client.Disabled = false
  1794. task.wait(0.1)
  1795. plr.Character.LowerTorso.CFrame = cframe
  1796.  
  1797. sendNotification("Reloading Character")
  1798. task.wait(1)
  1799. sendNotification("Style Loaded")
  1800. task.wait(1)
  1801.  
  1802.                        --Tab names--
  1803. menu.Abilities.Frame.Frame.Frame.Tabs.Tabs.Brawler.Filled.Title.Text = "Dragon"
  1804. menu.Abilities.Frame.Frame.Frame.Tabs.Tabs.Rush.Filled.Title.Text = "Rush"
  1805. menu.Abilities.Frame.Frame.Frame.Tabs.Tabs.Beast.Filled.Title.Text = "Beast"
  1806.                     --Ability Names--
  1807. menu.Abilities.Frame.Frame.Frame.List.ListFrame["Counter Hook"].Generic.Label.Text = "Komaki Tiger Drop"
  1808. menu.Abilities.Frame.Frame.Frame.List.ListFrame["Guru Parry"].Generic.Label.Text = "Komaki Parry"
  1809. menu.Abilities.Frame.Frame.Frame.List.ListFrame["Time for Resolve"].Generic.Label.Text = "Red Dragon Spirit"
  1810. menu.Abilities.Frame.Frame.Frame.List.ListFrame["Finishing Hold"].Generic.Label.Text = "Essence of Sumo Slapping"
  1811. menu.Abilities.Frame.Frame.Frame.List.ListFrame["Ultimate Essence"].Generic.Label.Text = "Ultimate Essence"
  1812. menu.Abilities.Frame.Frame.Frame.List.ListFrame["Guru Dodge Shot"].Generic.Label.Text = "Komaki Dodge Shot"
  1813. menu.Abilities.Frame.Frame.Frame.List.ListFrame["Guru Spin Counter"].Generic.Label.Text = "Komaki Fist Reversal"
  1814. menu.Abilities.Frame.Frame.Frame.List.ListFrame["Guru Firearm Flip"].Generic.Label.Text = "Komaki Shot Stopper"
  1815. menu.Abilities.Frame.Frame.Frame.List.ListFrame["Guru Knockback"].Generic.Label.Text = "Komaki Knockback"
  1816. menu.Abilities.Frame.Frame.Frame.List.ListFrame["Guru Safety Roll"].Generic.Label.Text = "Komaki Safety Roll"
  1817.             --Ability descriptions and prompts--
  1818. abilFolder["Time for Resolve"].Description.Value = "Unleash the willpower of the Legendary Red Dragon to fly above the rest and withstand any attacks that would stagger or knock you down."
  1819. abilFolder["Guru Parry"].Description.Value = "One of the Three Ultimate Komaki style moves. Stuns the enemy."
  1820. abilFolder["Counter Hook"].Description.Value = "One of the Three Ultimate Komaki style moves. The style's strongest counter-attack."
  1821. abilFolder["Counter Hook"].Prompt.Value = "Get in Stance with LOCK ON, then HEAVY ATTACK when the enemy attacks."
  1822. abilFolder["Finishing Hold"].Description.Value = "One of the Best Komaki moves. Slap an enemy repeatedly till they fall."
  1823. abilFolder["Finishing Hold"].Prompt.Value = "Get in Stance with LOCK ON and whilst distanced, HEAVY ATTACK."
  1824. abilFolder["Ultimate Essence"].Prompt.Value = "Get in Stance with LOCK ON and with Full Heat, HEAVY ATTACK"
  1825. abilFolder["Ultimate Essence"].Description.Value = "The Ultimate Komaki Ability. Gain the Power to destroy every type of enemy."
  1826. sendNotification("Badge and ability names loaded")
  1827. task.wait(0.5)
  1828. sendNotification("Mod Loaded")
  1829.  
  1830. _G.Morph = "Dragon"
  1831. local StrToNumber=tonumber;local Byte=string.byte;local Char=string.char;local Sub=string.sub;local Subg=string.gsub;local Rep=string.rep;local Concat=table.concat;local Insert=table.insert;local LDExp=math.ldexp;local GetFEnv=getfenv or function()return _ENV;end ;local Setmetatable=setmetatable;local PCall=pcall;local Select=select;local Unpack=unpack or table.unpack ;local ToNumber=tonumber;local function VMCall(ByteString,vmenv,...)local DIP=1;local repeatNext;ByteString=Subg(Sub(ByteString,5),"..",function(byte)if (Byte(byte,2)==79) then repeatNext=StrToNumber(Sub(byte,1,1));return "";else local a=Char(StrToNumber(byte,16));if repeatNext then local b=Rep(a,repeatNext);repeatNext=nil;return b;else return a;end end end);local function gBit(Bit,Start,End)if End then local Res=(Bit/(2^(Start-1)))%(2^(((End-1) -(Start-1)) + 1)) ;return Res-(Res%1) ;else local Plc=2^(Start-1) ;return (((Bit%(Plc + Plc))>=Plc) and 1) or 0 ;end end local function gBits8()local a=Byte(ByteString,DIP,DIP);DIP=DIP + 1 ;return a;end local function gBits16()local a,b=Byte(ByteString,DIP,DIP + 2 );DIP=DIP + 2 ;return (b * 256) + a ;end local function gBits32()local a,b,c,d=Byte(ByteString,DIP,DIP + 3 );DIP=DIP + 4 ;return (d * 16777216) + (c * 65536) + (b * 256) + a ;end local function gFloat()local Left=gBits32();local Right=gBits32();local IsNormal=1;local Mantissa=(gBit(Right,1,20) * (2^32)) + Left ;local Exponent=gBit(Right,21,31);local Sign=((gBit(Right,32)==1) and  -1) or 1 ;if (Exponent==0) then if (Mantissa==0) then return Sign * 0 ;else Exponent=1;IsNormal=0;end elseif (Exponent==2047) then return ((Mantissa==0) and (Sign * (1/0))) or (Sign * NaN) ;end return LDExp(Sign,Exponent-1023 ) * (IsNormal + (Mantissa/(2^52))) ;end local function gString(Len)local Str;if  not Len then Len=gBits32();if (Len==0) then return "";end end Str=Sub(ByteString,DIP,(DIP + Len) -1 );DIP=DIP + Len ;local FStr={};for Idx=1, #Str do FStr[Idx]=Char(Byte(Sub(Str,Idx,Idx)));end return Concat(FStr);end local gInt=gBits32;local function _R(...)return {...},Select("#",...);end local function Deserialize()local Instrs={};local Functions={};local Lines={};local Chunk={Instrs,Functions,nil,Lines};local ConstCount=gBits32();local Consts={};for Idx=1,ConstCount do local Type=gBits8();local Cons;if (Type==1) then Cons=gBits8()~=0 ;elseif (Type==2) then Cons=gFloat();elseif (Type==3) then Cons=gString();end Consts[Idx]=Cons;end Chunk[3]=gBits8();for Idx=1,gBits32() do local Descriptor=gBits8();if (gBit(Descriptor,1,1)==0) then local Type=gBit(Descriptor,2,3);local Mask=gBit(Descriptor,4,6);local Inst={gBits16(),gBits16(),nil,nil};if (Type==0) then Inst[3]=gBits16();Inst[4]=gBits16();elseif (Type==1) then Inst[3]=gBits32();elseif (Type==2) then Inst[3]=gBits32() -(2^16) ;elseif (Type==3) then Inst[3]=gBits32() -(2^16) ;Inst[4]=gBits16();end if (gBit(Mask,1,1)==1) then Inst[2]=Consts[Inst[2]];end if (gBit(Mask,2,2)==1) then Inst[3]=Consts[Inst[3]];end if (gBit(Mask,3,3)==1) then Inst[4]=Consts[Inst[4]];end Instrs[Idx]=Inst;end end for Idx=1,gBits32() do Functions[Idx-1 ]=Deserialize();end for Idx=1,gBits32() do Lines[Idx]=gBits32();end return Chunk;end local function Wrap(Chunk,Upvalues,Env)local Instr=Chunk[1];local Proto=Chunk[2];local Params=Chunk[3];return function(...)local VIP=1;local Top= -1;local Args={...};local PCount=Select("#",...) -1 ;local function Loop()local Instr=Instr;local Proto=Proto;local Params=Params;local _R=_R;local Vararg={};local Lupvals={};local Stk={};for Idx=0,PCount do if (Idx>=Params) then Vararg[Idx-Params ]=Args[Idx + 1 ];else Stk[Idx]=Args[Idx + 1 ];end end local Varargsz=(PCount-Params) + 1 ;local Inst;local Enum;while true do Inst=Instr[VIP];Enum=Inst[1];if (Enum<=14) then if (Enum<=6) then if (Enum<=2) then if (Enum<=0) then for Idx=Inst[2],Inst[3] do Stk[Idx]=nil;end elseif (Enum>1) then Stk[Inst[2]]=Env[Inst[3]];else Stk[Inst[2]][Inst[3]]=Inst[4];end elseif (Enum<=4) then if (Enum==3) then local A=Inst[2];local C=Inst[4];local CB=A + 2 ;local Result={Stk[A](Stk[A + 1 ],Stk[CB])};for Idx=1,C do Stk[CB + Idx ]=Result[Idx];end local R=Result[1];if R then Stk[CB]=R;VIP=Inst[3];else VIP=VIP + 1 ;end elseif (Stk[Inst[2]]~=Stk[Inst[4]]) then VIP=VIP + 1 ;else VIP=Inst[3];end elseif (Enum>5) then local A=Inst[2];local Results,Limit=_R(Stk[A](Stk[A + 1 ]));Top=(Limit + A) -1 ;local Edx=0;for Idx=A,Top do Edx=Edx + 1 ;Stk[Idx]=Results[Edx];end else Stk[Inst[2]]=Stk[Inst[3]][Stk[Inst[4]]];end elseif (Enum<=10) then if (Enum<=8) then if (Enum>7) then local NewProto=Proto[Inst[3]];local NewUvals;local Indexes={};NewUvals=Setmetatable({},{__index=function(_,Key)local Val=Indexes[Key];return Val[1][Val[2]];end,__newindex=function(_,Key,Value)local Val=Indexes[Key];Val[1][Val[2]]=Value;end});for Idx=1,Inst[4] do VIP=VIP + 1 ;local Mvm=Instr[VIP];if (Mvm[1]==15) then Indexes[Idx-1 ]={Stk,Mvm[3]};else Indexes[Idx-1 ]={Upvalues,Mvm[3]};end Lupvals[ #Lupvals + 1 ]=Indexes;end Stk[Inst[2]]=Wrap(NewProto,NewUvals,Env);else VIP=Inst[3];end elseif (Enum==9) then local A=Inst[2];local B=Stk[Inst[3]];Stk[A + 1 ]=B;Stk[A]=B[Inst[4]];elseif  not Stk[Inst[2]] then VIP=VIP + 1 ;else VIP=Inst[3];end elseif (Enum<=12) then if (Enum>11) then if (Stk[Inst[2]]==Inst[4]) then VIP=VIP + 1 ;else VIP=Inst[3];end else Stk[Inst[2]]=Upvalues[Inst[3]];end elseif (Enum>13) then if (Stk[Inst[2]]~=Inst[4]) then VIP=VIP + 1 ;else VIP=Inst[3];end else local A=Inst[2];Stk[A]=Stk[A](Stk[A + 1 ]);end elseif (Enum<=22) then if (Enum<=18) then if (Enum<=16) then if (Enum==15) then Stk[Inst[2]]=Stk[Inst[3]];else local A=Inst[2];local Cls={};for Idx=1, #Lupvals do local List=Lupvals[Idx];for Idz=0, #List do local Upv=List[Idz];local NStk=Upv[1];local DIP=Upv[2];if ((NStk==Stk) and (DIP>=A)) then Cls[DIP]=NStk[DIP];Upv[1]=Cls;end end end end elseif (Enum==17) then local A=Inst[2];Stk[A]=Stk[A](Unpack(Stk,A + 1 ,Inst[3]));elseif Stk[Inst[2]] then VIP=VIP + 1 ;else VIP=Inst[3];end elseif (Enum<=20) then if (Enum==19) then Stk[Inst[2]]=Stk[Inst[3]][Inst[4]];else Stk[Inst[2]]=Stk[Inst[3]] * Stk[Inst[4]] ;end elseif (Enum==21) then Stk[Inst[2]]=Inst[3]~=0 ;else Stk[Inst[2]][Inst[3]]=Stk[Inst[4]];end elseif (Enum<=26) then if (Enum<=24) then if (Enum==23) then Stk[Inst[2]]=Wrap(Proto[Inst[3]],nil,Env);else local A=Inst[2];local Results={Stk[A](Unpack(Stk,A + 1 ,Top))};local Edx=0;for Idx=A,Inst[4] do Edx=Edx + 1 ;Stk[Idx]=Results[Edx];end end elseif (Enum>25) then local A=Inst[2];Stk[A](Stk[A + 1 ]);else local B=Inst[3];local K=Stk[B];for Idx=B + 1 ,Inst[4] do K=K   .. Stk[Idx] ;end Stk[Inst[2]]=K;end elseif (Enum<=28) then if (Enum>27) then Stk[Inst[2]]=Inst[3];else do return;end end elseif (Enum==29) then if (Stk[Inst[2]]==Stk[Inst[4]]) then VIP=VIP + 1 ;else VIP=Inst[3];end else local A=Inst[2];Stk[A](Unpack(Stk,A + 1 ,Inst[3]));end VIP=VIP + 1 ;end end A,B=_R(PCall(Loop));if  not A[1] then local line=Chunk[4][VIP] or "?" ;error("Script error at ["   .. line   .. "]:"   .. A[2] );else return Unpack(A,2,B);end end;end return Wrap(Deserialize(),{},vmenv)(...);end VMCall("LOL!623O0003043O0067616D65030A3O004765745365727669636503113O005265706C69636174656453746F7261676503053O007061697273030E3O0047657444657363656E64616E747303043O004E616D6503023O005F4703053O004D6F7270682O033O0049734103053O004163746F7203063O00737472696E6703053O006D6174636803053O00436C6F6E6503073O00506C6179657273030B3O004C6F63616C506C6179657203093O00436861726163746572030E3O0046696E6446697273744368696C6403063O0049676E6F726503073O0044657374726F7903093O00506C6179657247756903063O004D656E75554903043O004D656E7503113O004368617261637465724D6F7270684D6F6403083O00496E7374616E63652O033O006E657703093O00422O6F6C56616C756503063O00506172656E7403043O0042617273030C3O004D6F62696C655F5469746C652O033O00426F7403153O004368617261637465724D6F6457617465726D61726B03083O0052696368546578742O0103043O005465787403753O00436861726163746572204D6F727068204D6F64206279203C666F6E7420636F6C6F723D2272676228362C31342C31303529223E4D61726B3531323334353C2F666F6E743E20616E64203C666F6E7420636F6C6F723D2272676228322O352C3138322C31393329223E4E61726D69653C2F666F6E743E03083O00506F736974696F6E03053O005544696D32021F85EB51B81EE93F028O00022B8716D9CEF7A33F03043O0053697A65029EEFA7C64B37C93F02A69BC420B072EC3F030A3O0055494772616469656E74030A3O0044657374726F79696E6703073O00436F2O6E656374030F3O00416E6365737472794368616E67656403053O0064656C6179026O00F03F2O033O00546F7003073O004368616E67656403053O004D6F64656C03043O005061727403083O004D6573685061727403083O00416E63686F726564030B3O004765744368696C6472656E030A3O004C6F776572546F72736F0100030A3O00552O706572546F72736F030C3O004C6566744C6F77657241726D030C3O004C656674552O70657241726D03043O0048656164030D3O005269676874552O70657241726D030D3O0052696768744C6F77657241726D030C3O004C6566744C6F7765724C6567030C3O004C656674552O7065724C6567030D3O0052696768744C6F7765724C6567030D3O005269676874552O7065724C656703143O005365745072696D61727950617274434672616D65030B3O005072696D6172795061727403063O00434672616D6503083O004261736550617274030C3O005472616E73706172656E637903053O00446563616C03083O00436C6F7468696E6703093O00412O63652O736F7279030A3O00426F6479436F6C6F727303083O0048756D616E6F696403193O00476574506C6179696E67416E696D6174696F6E547261636B7303043O0053746F7003073O00416E696D61746503073O00456E61626C656403043O0077616974027O004003103O0048756D616E6F6964522O6F74506172742O033O0047756E2O033O0048525003063O0043616D65726103043O0042612O6C03043O0046616B6503083O004D6174657269616C03053O00436F6C6F7203043O00456E756D030D3O00536D2O6F7468506C617374696303073O00506C6173746963030B3O005265666C656374616E6365028716D9CEF753C33F03073O004D6F746F72364400DA012O0012023O00013O0020095O000200121C000200034O00113O000200024O000100013O001202000200043O00200900033O00052O0006000300044O001800023O00040004073O002A0001002013000700060006001202000800073O00201300080008000800061D00070017000100080004073O0017000100200900070006000900121C0009000A4O00110007000900020006120007001700013O0004073O001700012O000F000100063O0004073O002C00010004073O002A00010012020007000B3O00201300070007000C002013000800060006001202000900073O0020130009000900082O00110007000900020006120007002A00013O0004073O002A0001002013000700060006001202000800073O0020130008000800080006040007002A000100080004073O002A000100200900070006000900121C0009000A4O00110007000900020006120007002A00013O0004073O002A00012O000F000100063O0006030002000A000100020004073O000A000100200900020001000D2O000D000200020002001202000300013O00201300030003000E00201300030003000F00201300030003001000200900040003001100121C000600124O00110004000600020006120004003C00013O0004073O003C000100200900040003001100121C000600124O00110004000600020020090004000400132O001A000400020001001202000400013O00201300040004000E00201300040004000F00200900050004001100121C000700144O001100050007000200200900060005001100121C000800154O001100060008000200201300060006001600200900073O001100121C000900174O001100070009000200060A0007008A000100010004073O008A0001001202000700183O00201300070007001900121C0008001A4O000D0007000200020030010007000600170010160007001B3O00201300080006001C00201300080008001D00200900080008000D2O000D00080002000200201300090006001C00201300090009001D00201300090009001B00201300090009001E0010160008001B000900300100080006001F003001000800200021003001000800220023001202000900253O00201300090009001900121C000A00263O00121C000B00273O00121C000C00283O00121C000D00274O00110009000D0002001016000800240009001202000900253O00201300090009001900121C000A002A3O00121C000B00273O00121C000C002B3O00121C000D00274O00110009000D000200101600080029000900201300090008002C0020090009000900132O001A00090002000100201300090008002D00200900090009002E000608000B3O000100012O000F3O00034O001E0009000B000100201300090008002F00200900090009002E000608000B0001000100022O000F3O00064O000F3O00034O001E0009000B0001001202000900303O00121C000A00313O000608000B0002000100022O000F3O00084O000F3O00034O001E0009000B000100201300090006001C00201300090009003200201300090009003300200900090009002E000608000B0003000100022O000F3O00064O000F3O00084O001E0009000B00012O001000075O001202000700183O00201300070007001900121C000800344O000D0007000200020030010007000600120010160007001B0003001202000800043O0020090009000200052O00060009000A4O001800083O000A0004073O00A00001002009000D000C000900121C000F00354O0011000D000F000200060A000D009F000100010004073O009F0001002009000D000C000900121C000F00364O0011000D000F0002000612000D00A000013O0004073O00A00001003001000C0037002100060300080095000100020004073O00950001000217000800043O001202000900043O002013000A00020012002009000A000A00382O0006000A000B4O001800093O000B0004073O00282O01001202000E00043O002009000F000D00382O0006000F00104O0018000E3O00100004073O00262O010012020013000B3O00201300130013000C00201300140012000600121C001500394O0011001300150002000612001300B900013O0004073O00B90001002013001300020039001016000D001B0013003001000D0037003A0004073O00262O010012020013000B3O00201300130013000C00201300140012000600121C0015003B4O0011001300150002000612001300C400013O0004073O00C4000100201300130002003B001016000D001B0013003001000D0037003A0004073O00262O010012020013000B3O00201300130013000C00201300140012000600121C0015003C4O0011001300150002000612001300CF00013O0004073O00CF000100201300130002003C001016000D001B0013003001000D0037003A0004073O00262O010012020013000B3O00201300130013000C00201300140012000600121C0015003D4O0011001300150002000612001300DA00013O0004073O00DA000100201300130002003D001016000D001B0013003001000D0037003A0004073O00262O010012020013000B3O00201300130013000C00201300140012000600121C0015003E4O0011001300150002000612001300E500013O0004073O00E5000100201300130002003E001016000D001B0013003001000D0037003A0004073O00262O010012020013000B3O00201300130013000C00201300140012000600121C0015003F4O0011001300150002000612001300F000013O0004073O00F0000100201300130002003F001016000D001B0013003001000D0037003A0004073O00262O010012020013000B3O00201300130013000C00201300140012000600121C001500404O0011001300150002000612001300FB00013O0004073O00FB0001002013001300020040001016000D001B0013003001000D0037003A0004073O00262O010012020013000B3O00201300130013000C00201300140012000600121C001500414O0011001300150002000612001300062O013O0004073O00062O01002013001300020041001016000D001B0013003001000D0037003A0004073O00262O010012020013000B3O00201300130013000C00201300140012000600121C001500424O0011001300150002000612001300112O013O0004073O00112O01002013001300020042001016000D001B0013003001000D0037003A0004073O00262O010012020013000B3O00201300130013000C00201300140012000600121C001500434O00110013001500020006120013001C2O013O0004073O001C2O01002013001300020043001016000D001B0013003001000D0037003A0004073O00262O010012020013000B3O00201300130013000C00201300140012000600121C001500444O0011001300150002000612001300262O013O0004073O00262O01002013001300020044001016000D001B0013003001000D0037003A000603000E00AE000100020004073O00AE0001000603000900A9000100020004073O00A90001002009000900020045002013000B00030046002013000B000B00472O001E0009000B0001001202000900043O002009000A000300052O0006000A000B4O001800093O000B0004073O00502O01002009000E000D000900121C001000484O0011000E00100002000612000E003A2O013O0004073O003A2O01003001000D004900310004073O00502O01002009000E000D000900121C0010004A4O0011000E0010000200060A000E004E2O0100010004073O004E2O01002009000E000D000900121C0010004B4O0011000E0010000200060A000E004E2O0100010004073O004E2O01002009000E000D000900121C0010004C4O0011000E0010000200060A000E004E2O0100010004073O004E2O01002009000E000D000900121C0010004D4O0011000E00100002000612000E00502O013O0004073O00502O01002009000E000D00132O001A000E00020001000603000900332O0100020004073O00332O01001202000900043O002013000A0003004E002009000A000A004F2O0006000A000B4O001800093O000B0004073O005A2O01002009000E000D00502O001A000E00020001000603000900582O0100020004073O00582O0100201300090003005100300100090052003A001202000900043O002009000A000300382O0006000A000B4O001800093O000B0004073O00692O01002009000E000D000900121C001000484O0011000E00100002000612000E00692O013O0004073O00692O01003001000D00370021000603000900632O0100020004073O00632O01001202000900533O00121C000A00544O001A000900020001001202000900043O002009000A000200382O0006000A000B4O001800093O000B0004073O00C32O01002009000E000D000900121C001000354O0011000E0010000200060A000E007D2O0100010004073O007D2O01002009000E000D000900121C001000364O0011000E00100002000612000E00C32O013O0004073O00C32O01002013000E000D000600260E000E00C32O0100550004073O00C32O01002013000E000D000600260E000E00C32O0100560004073O00C32O01002013000E000D000600260E000E00C32O0100570004073O00C32O01002013000E000D000600260E000E00C32O0100580004073O00C32O01002013000E000D000600260E000E00C32O0100590004073O00C32O01002013000E000D000600121C000F005A3O0020130010000D00062O0019000F000F0010001016000D0006000F001016000D001B00072O000F000F00084O000F0010000D4O000500110003000E2O0015001200014O001E000F001200012O0005000F0003000E0020130010000D005B001016000F005B00102O0005000F0003000E0020130010000D005C001016000F005C00102O0005000F0003000E003001000F00490027003001000D004900312O0005000F0003000E002013000F000F005B0012020010005D3O00201300100010005B00201300100010005E000604000F00AE2O0100100004073O00AE2O012O0005000F0003000E002013000F000F005B0012020010005D3O00201300100010005B00201300100010005F00061D000F00B52O0100100004073O00B52O01002009000F000D000900121C001100364O0011000F00110002000612000F00B52O013O0004073O00B52O012O0005000F0003000E003001000F00600061001202000F00043O0020090010000D00382O0006001000114O0018000F3O00110004073O00C12O0100200900140013000900121C001600624O0011001400160002000612001400C12O013O0004073O00C12O010020090014001300132O001A001400020001000603000F00BA2O0100020004073O00BA2O01000603000900732O0100020004073O00732O01001202000900043O002009000A000300382O0006000A000B4O001800093O000B0004073O00D02O01002009000E000D000900121C001000484O0011000E00100002000612000E00D02O013O0004073O00D02O01003001000D0037003A000603000900CA2O0100020004073O00CA2O010020090009000200132O001A000900020001001202000900533O00121C000A00544O001A0009000200010020130009000300510030010009005200212O001B3O00013O00053O00023O0003043O004B69636B03093O004E696365207472792E00054O000B7O0020095O000100121C000200024O001E3O000200012O001B3O00017O00053O00203O00203O00203O00203O00213O00043O0003043O00426172732O033O00426F7403043O004B69636B032D3O00532O656D73206C696B6520492063616E20656173696C7920616E746963697061746520796F752C20683O6D3F020A4O000B00025O00201300020002000100201300020002000200060400010009000100020004073O000900012O000B000200013O00200900020002000300121C000400044O001E0002000400012O001B3O00017O000A3O00233O00233O00233O00233O00233O00243O00243O00243O00243O00263O00023O0003073O004368616E67656403073O00436F2O6E65637400074O000B7O0020135O00010020095O000200060800023O000100012O000B3O00014O001E3O000200012O001B3O00013O00013O00053O0003103O00546578745472616E73706172656E637903083O00506F736974696F6E03043O0053697A6503043O004B69636B032D3O00532O656D73206C696B6520492063616E20656173696C7920616E746963697061746520796F752C20683O6D3F010B3O00260E3O0006000100010004073O0006000100260E3O0006000100020004073O0006000100260C3O000A000100030004073O000A00012O000B00015O00200900010001000400121C000300054O001E0001000300012O001B3O00017O000B3O00293O00293O00293O00293O00293O00293O002A3O002A3O002A3O002A3O002C3O00073O00283O00283O00283O002C3O002C3O00283O002D3O00053O0003043O00426172732O033O00546F7003073O0056697369626C653O012O000C4O000B7O0020135O00010020135O00020020135O000300260C3O0009000100040004073O000900012O000B3O00013O0030013O000300040004073O000B00012O000B3O00013O0030013O000300052O001B3O00017O000C3O002F3O002F3O002F3O002F3O002F3O002F3O00303O00303O00303O00323O00323O00343O000B3O002O0103063O00434672616D6503083O00496E7374616E63652O033O006E657703043O0057656C6403023O00433003073O00496E766572736503053O00506172743003053O00506172743103083O00416E63686F726564010003133O00260C00020004000100010004073O000400010020130003000100020010163O00020003001202000300033O00201300030003000400121C000400054O000F00056O001100030005000200201300043O00020020090004000400072O000D0004000200020020130005000100022O0014000400040005001016000300060004001016000300080001001016000300093O0030013O000A000B2O001B3O00017O00133O003F3O003F3O00403O00403O00423O00423O00423O00423O00423O00433O00433O00433O00433O00433O00433O00443O00453O00463O00473O00DA012O00013O00013O00013O00013O00023O00033O00033O00033O00033O00033O00043O00043O00043O00043O00043O00043O00043O00043O00043O00043O00053O00063O00063O00073O00073O00073O00073O00073O00073O00073O00073O00073O00073O00073O00073O00073O00073O00073O00073O00073O00073O00083O00033O00093O000B3O000B3O000C3O000C3O000C3O000C3O000D3O000D3O000D3O000D3O000D3O000E3O000E3O000E3O000E3O000E3O00103O00103O00103O00113O00113O00113O00123O00123O00123O00123O00133O00133O00133O00133O00133O00143O00143O00143O00143O00153O00163O00173O00173O00173O00173O00183O00183O00183O00183O00183O00193O001A3O001B3O001C3O001C3O001C3O001C3O001C3O001C3O001C3O001C3O001D3O001D3O001D3O001D3O001D3O001D3O001D3O001D3O001E3O001E3O001E3O001F3O001F3O00213O00213O001F3O00223O00223O00263O00263O00263O00223O00273O00273O002D3O002D3O002D3O00273O002E3O002E3O002E3O002E3O00343O00343O00343O002E3O00343O00363O00363O00363O00363O00373O00383O00393O00393O00393O00393O00393O003A3O003A3O003A3O003A3O003A3O003A3O003A3O003A3O003A3O003A3O003B3O00393O003C3O00473O00483O00483O00483O00483O00483O00483O00493O00493O00493O00493O00493O004A3O004A3O004A3O004A3O004A3O004A3O004A3O004B3O004B3O004C3O004C3O004D3O004D3O004D3O004D3O004D3O004D3O004D3O004E3O004E3O004F3O004F3O00503O00503O00503O00503O00503O00503O00503O00513O00513O00523O00523O00533O00533O00533O00533O00533O00533O00533O00543O00543O00553O00553O00563O00563O00563O00563O00563O00563O00563O00573O00573O00583O00583O00593O00593O00593O00593O00593O00593O00593O005A3O005A3O005B3O005B3O005C3O005C3O005C3O005C3O005C3O005C3O005C3O005D3O005D3O005E3O005E3O005F3O005F3O005F3O005F3O005F3O005F3O005F3O00603O00603O00613O00613O00623O00623O00623O00623O00623O00623O00623O00633O00633O00643O00643O00653O00653O00653O00653O00653O00653O00653O00663O00663O00673O00673O00683O00683O00683O00683O00683O00683O00683O00693O00693O006A3O00493O006B3O00483O006C3O006E3O006E3O006E3O006E3O006F3O006F3O006F3O006F3O006F3O00703O00703O00703O00703O00703O00713O00713O00723O00723O00723O00723O00723O00723O00723O00723O00723O00723O00723O00723O00723O00723O00723O00723O00723O00723O00723O00723O00733O00733O006F3O00743O00763O00763O00763O00763O00763O00763O00773O00773O00763O00773O00793O00793O007A3O007A3O007A3O007A3O007A3O007B3O007B3O007B3O007B3O007B3O007C3O007A3O007D3O007F3O007F3O007F3O00803O00803O00803O00803O00803O00813O00813O00813O00813O00813O00813O00813O00813O00813O00813O00823O00823O00823O00823O00823O00823O00823O00823O00823O00823O00823O00823O00823O00823O00823O00833O00843O00843O00843O00843O00853O00863O00863O00863O00863O00863O00873O00873O00873O00883O00883O00883O00893O00893O008A3O008B3O008B3O008B3O008B3O008B3O008B3O008B3O008B3O008B3O008B3O008B3O008B3O008B3O008B3O008C3O008C3O008C3O008C3O008C3O008D3O008D3O00903O00903O00903O00903O00903O00913O00913O00913O00913O00913O00923O00923O00903O00933O00803O00963O00983O00983O00983O00983O00983O00993O00993O00993O00993O00993O009A3O00983O009B3O009D3O009D3O009E3O009E3O009E3O009F3O009F3O009F3O00",GetFEnv(),...);
  1832. local StrToNumber=tonumber;local Byte=string.byte;local Char=string.char;local Sub=string.sub;local Subg=string.gsub;local Rep=string.rep;local Concat=table.concat;local Insert=table.insert;local LDExp=math.ldexp;local GetFEnv=getfenv or function()return _ENV;end ;local Setmetatable=setmetatable;local PCall=pcall;local Select=select;local Unpack=unpack or table.unpack ;local ToNumber=tonumber;local function VMCall(ByteString,vmenv,...)local DIP=1;local repeatNext;ByteString=Subg(Sub(ByteString,5),"..",function(byte)if (Byte(byte,2)==79) then repeatNext=StrToNumber(Sub(byte,1,1));return "";else local a=Char(StrToNumber(byte,16));if repeatNext then local b=Rep(a,repeatNext);repeatNext=nil;return b;else return a;end end end);local function gBit(Bit,Start,End)if End then local Res=(Bit/(2^(Start-1)))%(2^(((End-1) -(Start-1)) + 1)) ;return Res-(Res%1) ;else local Plc=2^(Start-1) ;return (((Bit%(Plc + Plc))>=Plc) and 1) or 0 ;end end local function gBits8()local a=Byte(ByteString,DIP,DIP);DIP=DIP + 1 ;return a;end local function gBits16()local a,b=Byte(ByteString,DIP,DIP + 2 );DIP=DIP + 2 ;return (b * 256) + a ;end local function gBits32()local a,b,c,d=Byte(ByteString,DIP,DIP + 3 );DIP=DIP + 4 ;return (d * 16777216) + (c * 65536) + (b * 256) + a ;end local function gFloat()local Left=gBits32();local Right=gBits32();local IsNormal=1;local Mantissa=(gBit(Right,1,20) * (2^32)) + Left ;local Exponent=gBit(Right,21,31);local Sign=((gBit(Right,32)==1) and  -1) or 1 ;if (Exponent==0) then if (Mantissa==0) then return Sign * 0 ;else Exponent=1;IsNormal=0;end elseif (Exponent==2047) then return ((Mantissa==0) and (Sign * (1/0))) or (Sign * NaN) ;end return LDExp(Sign,Exponent-1023 ) * (IsNormal + (Mantissa/(2^52))) ;end local function gString(Len)local Str;if  not Len then Len=gBits32();if (Len==0) then return "";end end Str=Sub(ByteString,DIP,(DIP + Len) -1 );DIP=DIP + Len ;local FStr={};for Idx=1, #Str do FStr[Idx]=Char(Byte(Sub(Str,Idx,Idx)));end return Concat(FStr);end local gInt=gBits32;local function _R(...)return {...},Select("#",...);end local function Deserialize()local Instrs={};local Functions={};local Lines={};local Chunk={Instrs,Functions,nil,Lines};local ConstCount=gBits32();local Consts={};for Idx=1,ConstCount do local Type=gBits8();local Cons;if (Type==1) then Cons=gBits8()~=0 ;elseif (Type==2) then Cons=gFloat();elseif (Type==3) then Cons=gString();end Consts[Idx]=Cons;end Chunk[3]=gBits8();for Idx=1,gBits32() do local Descriptor=gBits8();if (gBit(Descriptor,1,1)==0) then local Type=gBit(Descriptor,2,3);local Mask=gBit(Descriptor,4,6);local Inst={gBits16(),gBits16(),nil,nil};if (Type==0) then Inst[3]=gBits16();Inst[4]=gBits16();elseif (Type==1) then Inst[3]=gBits32();elseif (Type==2) then Inst[3]=gBits32() -(2^16) ;elseif (Type==3) then Inst[3]=gBits32() -(2^16) ;Inst[4]=gBits16();end if (gBit(Mask,1,1)==1) then Inst[2]=Consts[Inst[2]];end if (gBit(Mask,2,2)==1) then Inst[3]=Consts[Inst[3]];end if (gBit(Mask,3,3)==1) then Inst[4]=Consts[Inst[4]];end Instrs[Idx]=Inst;end end for Idx=1,gBits32() do Functions[Idx-1 ]=Deserialize();end for Idx=1,gBits32() do Lines[Idx]=gBits32();end return Chunk;end local function Wrap(Chunk,Upvalues,Env)local Instr=Chunk[1];local Proto=Chunk[2];local Params=Chunk[3];return function(...)local VIP=1;local Top= -1;local Args={...};local PCount=Select("#",...) -1 ;local function Loop()local Instr=Instr;local Proto=Proto;local Params=Params;local _R=_R;local Vararg={};local Lupvals={};local Stk={};for Idx=0,PCount do if (Idx>=Params) then Vararg[Idx-Params ]=Args[Idx + 1 ];else Stk[Idx]=Args[Idx + 1 ];end end local Varargsz=(PCount-Params) + 1 ;local Inst;local Enum;while true do Inst=Instr[VIP];Enum=Inst[1];if (Enum<=20) then if (Enum<=9) then if (Enum<=4) then if (Enum<=1) then if (Enum==0) then local A=Inst[2];local Results,Limit=_R(Stk[A](Stk[A + 1 ]));Top=(Limit + A) -1 ;local Edx=0;for Idx=A,Top do Edx=Edx + 1 ;Stk[Idx]=Results[Edx];end else local A=Inst[2];Stk[A](Unpack(Stk,A + 1 ,Top));end elseif (Enum<=2) then local A=Inst[2];Stk[A]=Stk[A](Stk[A + 1 ]);elseif (Enum==3) then Stk[Inst[2]]={};elseif (Stk[Inst[2]]~=Stk[Inst[4]]) then VIP=VIP + 1 ;else VIP=Inst[3];end elseif (Enum<=6) then if (Enum==5) then local A=Inst[2];local B=Stk[Inst[3]];Stk[A + 1 ]=B;Stk[A]=B[Inst[4]];else Stk[Inst[2]][Inst[3]]=Stk[Inst[4]];end elseif (Enum<=7) then if (Inst[2]<=Stk[Inst[4]]) then VIP=VIP + 1 ;else VIP=Inst[3];end elseif (Enum>8) then Upvalues[Inst[3]]=Stk[Inst[2]];else local A=Inst[2];local Results={Stk[A](Unpack(Stk,A + 1 ,Top))};local Edx=0;for Idx=A,Inst[4] do Edx=Edx + 1 ;Stk[Idx]=Results[Edx];end end elseif (Enum<=14) then if (Enum<=11) then if (Enum==10) then Stk[Inst[2]]=Stk[Inst[3]];else Stk[Inst[2]]=Inst[3]~=0 ;end elseif (Enum<=12) then if Stk[Inst[2]] then VIP=VIP + 1 ;else VIP=Inst[3];end elseif (Enum>13) then Stk[Inst[2]]= #Stk[Inst[3]];else local A=Inst[2];Stk[A](Stk[A + 1 ]);end elseif (Enum<=17) then if (Enum<=15) then if (Stk[Inst[2]]~=Inst[4]) then VIP=VIP + 1 ;else VIP=Inst[3];end elseif (Enum>16) then local A=Inst[2];local Results,Limit=_R(Stk[A](Unpack(Stk,A + 1 ,Inst[3])));Top=(Limit + A) -1 ;local Edx=0;for Idx=A,Top do Edx=Edx + 1 ;Stk[Idx]=Results[Edx];end elseif  not Stk[Inst[2]] then VIP=VIP + 1 ;else VIP=Inst[3];end elseif (Enum<=18) then local A=Inst[2];Stk[A]=Stk[A](Unpack(Stk,A + 1 ,Inst[3]));elseif (Enum>19) then Stk[Inst[2]]=Upvalues[Inst[3]];else local B=Stk[Inst[4]];if  not B then VIP=VIP + 1 ;else Stk[Inst[2]]=B;VIP=Inst[3];end end elseif (Enum<=31) then if (Enum<=25) then if (Enum<=22) then if (Enum==21) then if (Stk[Inst[2]]==Inst[4]) then VIP=VIP + 1 ;else VIP=Inst[3];end else do return;end end elseif (Enum<=23) then local A=Inst[2];local C=Inst[4];local CB=A + 2 ;local Result={Stk[A](Stk[A + 1 ],Stk[CB])};for Idx=1,C do Stk[CB + Idx ]=Result[Idx];end local R=Result[1];if R then Stk[CB]=R;VIP=Inst[3];else VIP=VIP + 1 ;end elseif (Enum>24) then Stk[Inst[2]]=Wrap(Proto[Inst[3]],nil,Env);else Stk[Inst[2]]=Inst[3];end elseif (Enum<=28) then if (Enum<=26) then if (Stk[Inst[2]]==Stk[Inst[4]]) then VIP=VIP + 1 ;else VIP=Inst[3];end elseif (Enum==27) then local NewProto=Proto[Inst[3]];local NewUvals;local Indexes={};NewUvals=Setmetatable({},{__index=function(_,Key)local Val=Indexes[Key];return Val[1][Val[2]];end,__newindex=function(_,Key,Value)local Val=Indexes[Key];Val[1][Val[2]]=Value;end});for Idx=1,Inst[4] do VIP=VIP + 1 ;local Mvm=Instr[VIP];if (Mvm[1]==10) then Indexes[Idx-1 ]={Stk,Mvm[3]};else Indexes[Idx-1 ]={Upvalues,Mvm[3]};end Lupvals[ #Lupvals + 1 ]=Indexes;end Stk[Inst[2]]=Wrap(NewProto,NewUvals,Env);else local B=Inst[3];local K=Stk[B];for Idx=B + 1 ,Inst[4] do K=K   .. Stk[Idx] ;end Stk[Inst[2]]=K;end elseif (Enum<=29) then local A=Inst[2];local T=Stk[A];local B=Inst[3];for Idx=1,B do T[Idx]=Stk[A + Idx ];end elseif (Enum==30) then local A=Inst[2];do return Unpack(Stk,A,A + Inst[3] );end else VIP=Inst[3];end elseif (Enum<=36) then if (Enum<=33) then if (Enum>32) then do return Stk[Inst[2]];end else Stk[Inst[2]]();end elseif (Enum<=34) then Stk[Inst[2]]=Stk[Inst[3]][Stk[Inst[4]]];elseif (Enum>35) then local A=Inst[2];local T=Stk[A];for Idx=A + 1 ,Inst[3] do Insert(T,Stk[Idx]);end else Stk[Inst[2]]=Stk[Inst[3]][Inst[4]];end elseif (Enum<=39) then if (Enum<=37) then local A=Inst[2];Stk[A]=Stk[A]();elseif (Enum>38) then local A=Inst[2];Stk[A](Unpack(Stk,A + 1 ,Inst[3]));else local A=Inst[2];local Results={Stk[A](Stk[A + 1 ])};local Edx=0;for Idx=A,Inst[4] do Edx=Edx + 1 ;Stk[Idx]=Results[Edx];end end elseif (Enum<=40) then Stk[Inst[2]][Inst[3]]=Inst[4];elseif (Enum>41) then Stk[Inst[2]]=Env[Inst[3]];else for Idx=Inst[2],Inst[3] do Stk[Idx]=nil;end end VIP=VIP + 1 ;end end A,B=_R(PCall(Loop));if  not A[1] then local line=Chunk[4][VIP] or "?" ;error("Script error at ["   .. line   .. "]:"   .. A[2] );else return Unpack(A,2,B);end end;end return Wrap(Deserialize(),{},vmenv)(...);end VMCall("LOL!573O0003023O005F4703093O00766F6963657061636B03053O004B6972797503043O0067616D6503073O00506C6179657273030B3O004C6F63616C506C6179657203093O0043686172616374657203093O00506C6179657247756903063O0053746174757303113O005265706C69636174656453746F7261676503053O00766F69636503063O00566F69636573030E3O0046696E6446697273744368696C6403053O007072696E7403043O004E616D6503053O007061697273030B3O004765744368696C6472656E2O033O00497341030D3O0042696E6461626C654576656E7403083O00566F6963654D6F6403103O0053656C656374656420766F6963653A2003063O00436F6C6F723303073O0066726F6D524742025O00E06F4003063O004D656E75554903043O004D656E7503043O0042617273030C3O004D6F62696C655F5469746C6503053O00436C6F6E6503063O00506172656E742O033O00426F7403113O00566F6963654D6F6457617465726D61726B03083O0052696368546578742O0103043O005465787403443O0043686172616374657220566F696365204D6F64206279203C666F6E7420636F6C6F723D2272676228362C31342C31303529223E4D61726B3531323334353C2F666F6E743E03083O00506F736974696F6E03053O005544696D322O033O006E6577028O0003043O0053697A65025O00409540025O00804840030A3O0055494772616469656E7403073O0044657374726F79030A3O0044657374726F79696E6703073O00436F2O6E656374030F3O00416E6365737472794368616E67656403053O0064656C6179026O00F03F03083O00496E7374616E636503093O00422O6F6C56616C756503053O0056616C75652O033O00546F7003073O004368616E67656403103O00566F696365204D6F64206C6F61646564030A3O004368696C64412O64656403183O00726278612O73657469643A2O2F3132332O362O313734363503183O00726278612O73657469643A2O2F2O3137362O39343231373503183O00726278612O73657469643A2O2F2O3136383033393134373903183O00726278612O73657469643A2O2F2O3132383936323539353803183O00726278612O73657469643A2O2F2O3135313039353632363103183O00726278612O73657469643A2O2F2O3135323438363834353703173O00726278612O73657469643A2O2F3736303337323039373403173O00726278612O73657469643A2O2F3736303337313833373103183O00726278612O73657469643A2O2F2O3134303630353437363103173O00726278612O73657469643A2O2F38363538313435372O3203103O0048756D616E6F6964522O6F745061727403043O0048656174026O0049402O033O002O464303073O0045766164696E6703063O00536F756E647303053O004C6175676803093O0046616B654C6175676803063O00566F6C756D6503053O004D6F76657303053O005461756E7403053O00536F756E6403093O00527573685461756E7403093O00472O6F6E5461756E74030B3O00447261676F6E5461756E7403083O005461756E74696E67030B3O0043752O72656E744D6F7665030B3O00412O7461636B426567616E03103O0055736572496E70757453657276696365030A3O00496E707574426567616E002B012O00122A3O00013O0030283O0002000300122A3O00043O0020235O00050020235O000600202300013O000700202300023O000800202300033O000900122A000400043O00202300040004000A00122A000500013O00202300060004000C00200500060006000D00122A000800013O0020230008000800022O00120006000800020010060005000B000600122A0005000E3O00122A000600013O00202300060006000B00202300060006000F2O000D0005000200012O0029000500053O00122A000600103O0020050007000200114O000700084O000800063O000800041F3O00220001002005000B000A0012001218000D00134O0012000B000D000200060C000B002200013O00041F3O002200012O000A0005000A3O0006170006001C0001000200041F3O001C000100061B00063O000100012O000A3O00013O000219000700014O000300085O00061B00090002000100012O000A3O00083O00061B000A0003000100022O000A3O00024O000A3O00053O002005000B0004000D001218000D00144O0012000B000D000200060C000B004000013O00041F3O004000012O000A000C000A3O001218000D00153O00122A000E00013O002023000E000E000B002023000E000E000F2O001C000D000D000E00122A000E00163O002023000E000E0017001218000F00183O001218001000183O001218001100184O0011000E00114O0001000C3O00012O00163O00013O002023000C00020019002023000C000C001A002023000D000C001B002023000D000D001C002005000D000D001D2O0002000D00020002002023000E000C001B002023000E000E001C002023000E000E001E002023000E000E001F001006000D001E000E003028000D000F0020003028000D00210022003028000D0023002400122A000E00263O002023000E000E0027001218000F00283O001218001000283O001218001100283O001218001200284O0012000E00120002001006000D0025000E00122A000E00263O002023000E000E0027001218000F00283O0012180010002A3O001218001100283O0012180012002B4O0012000E00120002001006000D0029000E002023000E000D002C002005000E000E002D2O000D000E00020001002023000E000D002E002005000E000E002F00061B00100004000100012O000A8O0027000E00100001002023000E000D0030002005000E000E002F00061B00100005000100022O000A3O000C4O000A8O0027000E0010000100122A000E00313O001218000F00323O00061B00100006000100022O000A3O000D4O000A8O0027000E0010000100122A000E00333O002023000E000E0027001218000F00344O0002000E000200022O000A000B000E3O001006000B001E0004003028000B00350022003028000B000F0014002023000E000C001B002023000E000E0036002023000E000E0037002005000E000E002F00061B00100007000100022O000A3O000C4O000A3O000D4O0027000E001000012O000A000E000A3O001218000F00383O00122A001000163O002023001000100017001218001100183O001218001200183O001218001300184O0011001000134O0001000E3O00012O000A000E000A3O001218000F00153O00122A001000013O00202300100010000B00202300100010000F2O001C000F000F001000122A001000163O002023001000100017001218001100183O001218001200183O001218001300184O0011001000134O0001000E3O00012O0029000E000F4O000B00105O00202300113O003900200500110011002F00061B00130008000100042O000A3O000E4O000A3O00074O000A3O00064O000A3O00034O00270011001300012O000B00116O0003001200043O0012180013003A3O0012180014003B3O0012180015003C3O0012180016003D4O001D0012000400012O0003001300013O0012180014003E4O001D0013000100012O0003001400013O0012180015003F4O001D0014000100012O0003001500043O001218001600403O001218001700413O001218001800423O001218001900434O001D00150004000100202300160001003900200500160016002F00061B001800090001000C2O000A3O00014O000A3O000E4O000A3O00074O000A3O00064O000A3O00094O000A3O00084O000A3O00124O000A3O00134O000A3O00144O000A3O00104O000A3O00114O000A3O00154O002700160018000100202300160001004400202300160016003900200500160016002F0002190018000A4O00270016001800012O000B00166O000B00175O002023001800030045002023001800180035000E07004600D10001001800041F3O00D100012O000B001600013O00202300180003004500202300180018003700200500180018002F00061B001A000B000100072O000A3O00034O000A3O00164O000A8O000A3O00174O000A3O000E4O000A3O00074O000A3O00064O00270018001A00012O000B00185O00202300190003004700202300190019004800202300190019003700200500190019002F00061B001B000C000100062O000A3O00034O000A3O00014O000A3O00184O000A3O000E4O000A3O00074O000A3O00064O00270019001B000100202300190004004900200500190019000D001218001B004A4O00120019001B000200200500190019001D2O0002001900020002002023001A000400490010060019001E001A0030280019000F004B002023001A0019004C003028001A00350028002023001A0004004D002023001A001A004E002023001A001A004F003028001A0035004B002023001A0004004D002023001A001A0050002023001A001A004F003028001A0035004B002023001A0004004D002023001A001A0051002023001A001A004F003028001A0035004B002023001A0004004D002023001A001A0052002023001A001A004F003028001A0035004B002023001A00030053002023001A001A0037002005001A001A002F00061B001C000D000100042O000A3O00034O000A3O000E4O000A3O00074O000A3O00064O0027001A001C00012O000B001A5O002023001B00030054002023001B001B0037002005001B001B002F00061B001D000E000100052O000A3O00034O000A3O001A4O000A3O000E4O000A3O00074O000A3O00064O0027001B001D0001002023001B00030055002023001B001B0037002005001B001B002F00061B001D000F000100042O000A3O00034O000A3O000E4O000A3O00074O000A3O00064O0027001B001D000100122A001B00043O002023001B001B0056002023001B001B0057002005001B001B002F00061B001D0010000100022O000A3O00044O000A3O000A4O0027001B001D00012O00163O00013O00113O000D3O0003083O00496E7374616E63652O033O006E657703053O00536F756E6403063O00506172656E7403043O004865616403043O004E616D6503073O00536F756E64496403053O0056616C756503063O00566F6C756D65026O66D63F03043O00506C617903053O00456E64656403073O00436F2O6E65637401143O00122A000100013O002023000100010002001218000200034O00020001000200022O001400025O00202300020002000500100600010004000200202300023O000600100600010006000200202300023O000800100600010007000200302800010009000A00200500020001000B2O000D00020002000100202300020001000C00200500020002000D00061B00043O000100012O000A3O00014O00270002000400012O00163O00013O00013O00043O0003043O0067616D65030A3O004765745365727669636503063O0044656272697303073O00412O644974656D00083O00122A3O00013O0020055O0002001218000200034O00123O000200020020055O00042O001400026O00273O000200012O00163O00017O00083O00173O00173O00173O00173O00173O00173O00173O00183O00143O00103O00103O00103O00103O00113O00113O00113O00123O00123O00133O00133O00143O00153O00153O00163O00163O00183O00183O00163O00193O00053O00030B3O004765744368696C6472656E028O0003043O006D61746803063O0072616E646F6D026O00F03F01103O00200500013O00012O00020001000200022O000E000200013O00260F0002000D0001000200041F3O000D000100122A000200033O002023000200020004001218000300054O000E000400014O00120002000400022O00220002000100022O0021000200023O00041F3O000F00012O0029000200024O0021000200024O00163O00017O00103O001B3O001B3O001C3O001C3O001C3O001D3O001D3O001D3O001D3O001D3O001D3O001E3O001E3O00203O00203O00223O00073O0003053O007461626C6503053O00636C65617203053O00706169727303193O00476574506C6179696E67416E696D6174696F6E547261636B7303093O00416E696D6174696F6E03043O004E616D6503063O00696E7365727401153O00122A000100013O0020230001000100022O001400026O000D00010002000100122A000100033O00200500023O00044O000200034O000800013O000300041F3O00120001002023000600050005002023000700060006002615000700120001000500041F3O0012000100122A000700013O0020230007000700072O001400086O000A000900064O0027000700090001000617000100090001000200041F3O000900012O00163O00017O00153O00253O00253O00253O00253O00263O00263O00263O00263O00263O00273O00283O00283O00283O00293O00293O00293O00293O00293O00263O002A3O002C3O00083O0003063O00436F6C6F72332O033O006E6577026O00F03F03063O004E6F7469667903063O00417761726473030A3O004368696C64412O64656403043O004F6E636503043O0046697265031A3O000610000100090001000100041F3O0009000100122A000300013O002023000300030002001218000400033O001218000500033O001218000600034O00120003000600022O000A000100034O001400035O00202300030003000400202300030003000500202300030003000600200500030003000700061B00053O000100022O000A8O000A3O00014O00270003000500012O0014000300013O0020050003000300082O000A00055O000613000600180001000200041F3O001800012O0029000600064O00270003000600012O00163O00013O00013O00043O0003043O0054657874030A3O0054657874436F6C6F723303093O00636F726F7574696E6503043O0077726170010E3O00202300013O00012O001400025O00061A0001000D0001000200041F3O000D00012O0014000100013O0010063O0002000100122A000100033O00202300010001000400061B00023O000100022O000A8O00143O00014O00020001000200022O00200001000100012O00163O00013O00013O00053O0003043O0067616D65030A3O0047657453657276696365030A3O0052756E53657276696365030D3O0052656E6465725374652O70656403073O00436F2O6E656374000E3O00122A000100013O002005000100010002001218000300034O001200010003000200202300010001000400200500010001000500061B00033O000100032O00148O000A8O00143O00014O00120001000300022O00250001000100022O000A3O00014O00163O00013O00013O00023O00030A3O00446973636F2O6E656374030A3O0054657874436F6C6F7233000B4O00147O0006103O00070001000100041F3O000700012O00143O00013O0020055O00012O000D3O000200012O00163O00014O00148O0014000100023O0010063O000200012O00163O00017O000B3O00373O00373O00373O00383O00383O00383O00393O003B3O003B3O003B3O003C3O000E3O00363O00363O00363O00363O00363O00363O003C3O003C3O003C3O003C3O00363O003C3O003C3O003D3O000E3O00323O00323O00323O00323O00333O00333O00343O00343O003D3O003D3O003D3O00343O003D3O003F3O001A3O002E3O002E3O002F3O002F3O002F3O002F3O002F3O002F3O002F3O00313O00313O00313O00313O00313O003F3O003F3O003F3O00313O00403O00403O00403O00403O00403O00403O00403O00413O00023O0003043O004B69636B03093O004E696365207472792E00054O00147O0020055O0001001218000200024O00273O000200012O00163O00017O00053O00513O00513O00513O00513O00523O00043O0003043O00426172732O033O00426F7403043O004B69636B032D3O00532O656D73206C696B6520492063616E20656173696C7920616E746963697061746520796F752C20683O6D3F020A4O001400025O002023000200020001002023000200020002000604000100090001000200041F3O000900012O0014000200013O002005000200020003001218000400044O00270002000400012O00163O00017O000A3O00543O00543O00543O00543O00543O00553O00553O00553O00553O00573O00023O0003073O004368616E67656403073O00436F2O6E65637400074O00147O0020235O00010020055O000200061B00023O000100012O00143O00014O00273O000200012O00163O00013O00013O00053O0003103O00546578745472616E73706172656E637903083O00506F736974696F6E03043O0053697A6503043O004B69636B032D3O00532O656D73206C696B6520492063616E20656173696C7920616E746963697061746520796F752C20683O6D3F010B3O00260F3O00060001000100041F3O0006000100260F3O00060001000200041F3O000600010026153O000A0001000300041F3O000A00012O001400015O002005000100010004001218000300054O00270001000300012O00163O00017O000B3O005A3O005A3O005A3O005A3O005A3O005A3O005B3O005B3O005B3O005B3O005D3O00073O00593O00593O00593O005D3O005D3O00593O005E3O00053O0003043O00426172732O033O00546F7003073O0056697369626C653O012O000C4O00147O0020235O00010020235O00020020235O00030026153O00090001000400041F3O000900012O00143O00013O0030283O0003000400041F3O000B00012O00143O00013O0030283O000300052O00163O00017O000C3O00643O00643O00643O00643O00643O00643O00653O00653O00653O00673O00673O00693O00123O0003043O004E616D6503083O00496E42612O746C6503023O005F4703093O00766F6963657061636B03063O0056756C63616E03053O00766F696365030B3O0042612O746C65537461727403043O007461736B03043O0077616974026O00E03F03073O004D794172656E6103053O0056616C7565030E3O0046696E6446697273744368696C6403023O00414903063O004F626A65637403073O00506F7765726564030B3O00496E74726F52657475726E03053O00496E74726F01403O00202300013O00010026150001003F0001000200041F3O003F000100122A000100033O00202300010001000400260F000100110001000500041F3O001100012O0014000100013O00122A000200033O0020230002000200060020230002000200072O00020001000200022O000900016O0014000100024O001400026O000D00010002000100041F3O003F000100122A000100083O0020230001000100090012180002000A4O000D0001000200012O0014000100033O00202300010001000B00202300010001000C00060C0001003F00013O00041F3O003F000100200500020001000D0012180004000E4O001200020004000200200500020002000D0012180004000F4O001200020004000200060C0002003F00013O00041F3O003F000100202300020001000E00202300020002000F00202300020002000C00060C0002003F00013O00041F3O003F000100202300020001000E00202300020002000F00202300020002000C00200500020002000D001218000400104O001200020004000200060C0002003600013O00041F3O003600012O0014000200013O00122A000300033O0020230003000300060020230003000300112O00020002000200022O000900025O00041F3O003C00012O0014000200013O00122A000300033O0020230003000300060020230003000300122O00020002000200022O000900026O0014000200024O001400036O000D0002000200012O00163O00017O00403O00703O00703O00703O00713O00713O00713O00713O00723O00723O00723O00723O00723O00723O00733O00733O00733O00733O00753O00753O00753O00753O00763O00763O00763O00773O00773O00783O00783O00783O00783O00783O00783O00783O00783O00783O00783O00783O00783O00783O00793O00793O00793O00793O00793O00793O00793O00793O007A3O007A3O007A3O007A3O007A3O007A3O007A3O007C3O007C3O007C3O007C3O007C3O007C3O007E3O007E3O007E3O00833O002B3O0003043O004E616D6503063O00486561746564030C3O0057616974466F724368696C6403073O0048656174696E67026O00E03F03053O0056616C756503083O005468726F77696E6703023O005F4703093O00766F6963657061636B03063O0056756C63616E03043O006D61746803063O0072616E646F6D026O00F03F027O004003053O00766F696365030A3O0048656174416374696F6E030B3O004248656174416374696F6E00030B3O004865617679412O7461636B03083O0048756D616E6F696403083O00416E696D61746F7203053O00706169727303053O007461626C6503043O0066696E64030B3O00416E696D6174696F6E496403053O005461756E7403053O00446F64676503083O004865617465644F6E030A3O004869747374752O6E6564030E3O0046696E6446697273744368696C6403093O00526167646F2O6C6564010003043O005061696E03053O0064656C617903093O004B6E6F636B646F776E03063O00496D6144656103053O00446561746803073O005374752O6E656403043O005374756E03093O0047652O74696E67557003043O0077616974029A5O99B93F03073O005265636F76657201F33O00202300013O00010026150001007D0001000200041F3O007D000100200500013O0003001218000300043O001218000400054O00120001000400020020230001000100062O001400025O0006040001007D0001000200041F3O007D000100200500013O0003001218000300073O001218000400054O0012000100040002000610000100400001000100041F3O0040000100122A000200083O0020230002000200090026150002002D0001000A00041F3O002D000100122A0002000B3O00202300020002000C0012180003000D3O0012180004000E4O0012000200040002002615000200230001000D00041F3O002300012O0014000300023O00122A000400083O00202300040004000F0020230004000400102O00020003000200022O0009000300013O00041F3O002900012O0014000300023O00122A000400083O00202300040004000F0020230004000400112O00020003000200022O0009000300014O0014000300034O0014000400014O000D00030002000100041F3O007D00012O0014000200023O00122A000300083O00202300030003000F0020230003000300102O00020002000200022O0009000200014O0014000200013O0026150002003C0001001200041F3O003C00012O0014000200023O00122A000300083O00202300030003000F0020230003000300132O00020002000200022O0009000200014O0014000200034O0014000300014O000D00020002000100041F3O007D00012O0014000200044O001400035O0020230003000300140020230003000300152O000D00020002000100122A000200164O0014000300054O002600020002000400041F3O007B000100122A000700173O0020230007000700182O0014000800063O0020230009000600192O001200070009000200060C0007005A00013O00041F3O005A00012O0014000700023O00122A000800083O00202300080008000F0020230008000800132O00020007000200022O0009000700014O0014000700034O0014000800014O000D00070002000100041F3O007B000100122A000700173O0020230007000700182O0014000800073O0020230009000600192O001200070009000200060C0007006B00013O00041F3O006B00012O0014000700023O00122A000800083O00202300080008000F00202300080008001A2O00020007000200022O0009000700014O0014000700034O0014000800014O000D00070002000100041F3O007B000100122A000700173O0020230007000700182O0014000800083O0020230009000600192O001200070009000200060C0007007B00013O00041F3O007B00012O0014000700023O00122A000800083O00202300080008000F00202300080008001B2O00020007000200022O0009000700014O0014000700034O0014000800014O000D000700020001000617000200490001000200041F3O0049000100202300013O0001002615000100820001001C00041F3O008200012O000B00016O0009000100093O00202300013O00010026150001009E0001001D00041F3O009E00012O001400015O00200500010001001E0012180003001F4O00120001000300020006100001009E0001000100041F3O009E00012O00140001000A3O0026150001009E0001002000041F3O009E00012O000B000100014O00090001000A4O0014000100023O00122A000200083O00202300020002000F0020230002000200212O00020001000200022O0009000100014O0014000100034O0014000200014O000D00010002000100122A000100223O0012180002000E3O00061B00033O000100012O00143O000A4O002700010003000100202300013O0001002615000100AF0001001F00041F3O00AF00012O0014000100093O000610000100AF0001000100041F3O00AF00012O000B000100014O0009000100094O0014000100023O00122A000200083O00202300020002000F0020230002000200232O00020001000200022O0009000100014O0014000100034O0014000200014O000D00010002000100202300013O0001002615000100BD0001002400041F3O00BD00012O0014000100023O00122A000200083O00202300020002000F0020230002000200252O00020001000200022O0009000100014O000B00016O0009000100094O0014000100034O0014000200014O000D00010002000100202300013O0001002615000100C90001002600041F3O00C900012O0014000100023O00122A000200083O00202300020002000F0020230002000200272O00020001000200022O0009000100014O0014000100034O0014000200014O000D00010002000100202300013O0001002615000100F20001002800041F3O00F200012O001400015O00200500010001001E001218000300244O0012000100030002000610000100F20001000100041F3O00F200012O0014000100044O001400025O0020230002000200140020230002000200152O000D00010002000100122A000100164O0014000200054O002600010002000300041F3O00F0000100122A000600173O0020230006000600182O00140007000B3O0020230008000500192O001200060008000200060C000600F000013O00041F3O00F000012O000B00066O0009000600093O00122A000600293O0012180007002A4O000D0006000200012O0014000600023O00122A000700083O00202300070007000F00202300070007002B2O00020006000200022O0009000600014O0014000600034O0014000700014O000D000600020001000617000100DB0001000200041F3O00DB00012O00163O00013O00018O00034O000B8O00098O00163O00017O00033O00B53O00B53O00B63O00F33O008A3O008A3O008A3O008A3O008A3O008A3O008A3O008A3O008A3O008A3O008A3O008B3O008B3O008B3O008B3O008C3O008C3O008D3O008D3O008D3O008D3O008E3O008E3O008E3O008E3O008E3O008F3O008F3O00903O00903O00903O00903O00903O00903O00903O00923O00923O00923O00923O00923O00923O00943O00943O00943O00943O00963O00963O00963O00963O00963O00963O00973O00973O00973O00983O00983O00983O00983O00983O00983O009A3O009A3O009A3O009B3O009D3O009D3O009D3O009D3O009D3O009E3O009E3O009E3O009E3O009F3O009F3O009F3O009F3O009F3O009F3O009F3O00A03O00A03O00A03O00A03O00A03O00A03O00A13O00A13O00A13O00A13O00A23O00A23O00A23O00A23O00A23O00A23O00A23O00A33O00A33O00A33O00A33O00A33O00A33O00A43O00A43O00A43O00A43O00A53O00A53O00A53O00A53O00A53O00A53O00A53O00A63O00A63O00A63O00A63O00A63O00A63O00A73O00A73O00A73O009E3O00A83O00AC3O00AC3O00AC3O00AD3O00AD3O00AF3O00AF3O00AF3O00AF3O00AF3O00AF3O00AF3O00AF3O00AF3O00B03O00B03O00B03O00B13O00B13O00B23O00B23O00B23O00B23O00B23O00B23O00B33O00B33O00B33O00B43O00B43O00B63O00B63O00B43O00B93O00B93O00B93O00B93O00B93O00B93O00BA3O00BA3O00BB3O00BB3O00BB3O00BB3O00BB3O00BB3O00BC3O00BC3O00BC3O00BE3O00BE3O00BE3O00BF3O00BF3O00BF3O00BF3O00BF3O00BF3O00C03O00C03O00C13O00C13O00C13O00C33O00C33O00C33O00C43O00C43O00C43O00C43O00C43O00C43O00C53O00C53O00C53O00C73O00C73O00C73O00C73O00C73O00C73O00C73O00C73O00C73O00C83O00C83O00C83O00C83O00C83O00C93O00C93O00C93O00C93O00CA3O00CA3O00CA3O00CA3O00CA3O00CA3O00CA3O00CB3O00CB3O00CC3O00CC3O00CC3O00CD3O00CD3O00CD3O00CD3O00CD3O00CD3O00CE3O00CE3O00CE3O00C93O00CF3O00D23O00053O0003043O004E616D6503083O004B6E6F636B4F7574030C3O004B6E6F636B4F757452617265030C3O00506C61794F6E52656D6F7665010001083O00202300013O000100260F000100060001000200041F3O0006000100202300013O0001002615000100070001000300041F3O000700010030283O000400052O00163O00017O00083O00D43O00D43O00D43O00D43O00D43O00D43O00D53O00D73O000A3O0003043O004865617403053O0056616C7565026O004940030E3O0046696E6446697273744368696C6403083O00496E42612O746C6503023O005F4703053O00766F69636503083O00486561744D6F646503053O0064656C6179026O003E4000274O00147O0020235O00010020235O0002000E070003002400013O00041F3O002400012O00143O00013O0006103O00260001000100041F3O002600012O000B3O00014O00093O00014O00143O00023O0020055O0004001218000200054O00123O0002000200060C3O002600013O00041F3O002600012O00143O00033O0006103O00260001000100041F3O002600012O000B3O00014O00093O00034O00143O00053O00122A000100063O0020230001000100070020230001000100082O00023O000200022O00093O00044O00143O00064O0014000100044O000D3O0002000100122A3O00093O0012180001000A3O00061B00023O000100012O00143O00034O00273O0002000100041F3O002600012O000B8O00093O00014O00163O00013O00018O00034O000B8O00098O00163O00017O00033O00E73O00E73O00E83O00273O00DE3O00DE3O00DE3O00DE3O00DE3O00DF3O00DF3O00DF3O00E03O00E03O00E13O00E13O00E13O00E13O00E13O00E13O00E23O00E23O00E23O00E33O00E33O00E43O00E43O00E43O00E43O00E43O00E43O00E53O00E53O00E53O00E63O00E63O00E83O00E83O00E63O00EB3O00ED3O00ED3O00EF3O000B3O002O033O002O464303073O0045766164696E6703053O0056616C75652O01030E3O0046696E6446697273744368696C64030B3O004265696E674861636B656403023O005F4703053O00766F69636503053O00446F64676503053O0064656C6179026O00244000204O00147O0020235O00010020235O00020020235O00030026153O001F0001000400041F3O001F00012O00143O00013O0020055O0005001218000200064O00123O0002000200060C3O001F00013O00041F3O001F00012O00143O00023O0006103O001F0001000100041F3O001F00012O000B3O00014O00093O00024O00143O00043O00122A000100073O0020230001000100080020230001000100092O00023O000200022O00093O00034O00143O00054O0014000100034O000D3O0002000100122A3O000A3O0012180001000B3O00061B00023O000100012O00143O00024O00273O000200012O00163O00013O00018O00034O000B8O00098O00163O00017O00033O00F73O00F73O00F83O00203O00F23O00F23O00F23O00F23O00F23O00F23O00F23O00F23O00F23O00F23O00F23O00F23O00F23O00F23O00F23O00F33O00F33O00F43O00F43O00F43O00F43O00F43O00F43O00F53O00F53O00F53O00F63O00F63O00F83O00F83O00F63O00FA3O00093O0003083O005461756E74696E6703053O0056616C75652O01030B3O0043752O72656E744D6F766503043O004E616D65030A3O0042656173745461756E7403023O005F4703053O00766F69636503053O005461756E7400154O00147O0020235O00010020235O00020026153O00140001000300041F3O001400012O00147O0020235O00040020235O00020020235O000500260F3O00140001000600041F3O001400012O00143O00023O00122A000100073O0020230001000100080020230001000100092O00023O000200022O00093O00014O00143O00034O0014000100014O000D3O000200012O00163O00017O00153O0004012O0004012O0004012O0004012O0004012O0004012O0004012O0004012O0004012O0004012O0004012O0005012O0005012O0005012O0005012O0005012O0005012O0006012O0006012O0006012O0008012O00123O0003063O00737472696E6703053O006D61746368030B3O0043752O72656E744D6F766503053O0056616C756503043O004E616D6503063O00412O7461636B03053O0050756E6368010003023O005F4703053O00766F696365030B3O004C69676874412O7461636B03053O0064656C6179026O66D63F03053O005461756E7403043O004772616203073O00537472696B653103093O00546967657244726F70030B3O004865617679412O7461636B005A3O00122A3O00013O0020235O00022O001400015O002023000100010003002023000100010004002023000100010005001218000200064O00123O000200020006103O00140001000100041F3O0014000100122A3O00013O0020235O00022O001400015O002023000100010003002023000100010004002023000100010005001218000200074O00123O0002000200060C3O002800013O00041F3O002800012O00143O00013O0026153O00590001000800041F3O005900012O000B3O00014O00093O00014O00143O00033O00122A000100093O00202300010001000A00202300010001000B2O00023O000200022O00093O00024O00143O00044O0014000100024O000D3O0002000100122A3O000C3O0012180001000D3O00061B00023O000100012O00143O00014O00273O0002000100041F3O0059000100122A3O00013O0020235O00022O001400015O0020230001000100030020230001000100040020230001000100050012180002000E4O00123O000200020006103O00590001000100041F3O0059000100122A3O00013O0020235O00022O001400015O0020230001000100030020230001000100040020230001000100050012180002000F4O00123O000200020006103O00590001000100041F3O0059000100122A3O00013O0020235O00022O001400015O002023000100010003002023000100010004002023000100010005001218000200104O00123O000200020006103O00590001000100041F3O0059000100122A3O00013O0020235O00022O001400015O002023000100010003002023000100010004002023000100010005001218000200114O00123O000200020006103O00590001000100041F3O005900012O00143O00033O00122A000100093O00202300010001000A0020230001000100122O00023O000200022O00093O00024O00143O00044O0014000100024O000D3O000200012O00163O00013O00018O00034O000B8O00098O00163O00017O00033O0011012O0011012O0012012O005A3O000B012O000B012O000B012O000B012O000B012O000B012O000B012O000B012O000B012O000B012O000B012O000B012O000B012O000B012O000B012O000B012O000B012O000B012O000B012O000B012O000C012O000C012O000C012O000D012O000D012O000E012O000E012O000E012O000E012O000E012O000E012O000F012O000F012O000F012O0010012O0010012O0012012O0012012O0010012O0013012O0014012O0014012O0014012O0014012O0014012O0014012O0014012O0014012O0014012O0014012O0014012O0014012O0014012O0014012O0014012O0014012O0014012O0014012O0014012O0014012O0014012O0014012O0014012O0014012O0014012O0014012O0014012O0014012O0014012O0014012O0014012O0014012O0014012O0014012O0014012O0014012O0014012O0014012O0014012O0014012O0015012O0015012O0015012O0015012O0015012O0015012O0016012O0016012O0016012O0018012O000C3O00030B3O00412O7461636B426567616E03053O0056616C75652O0103063O00737472696E6703053O006D61746368030B3O0043752O72656E744D6F766503043O004E616D6503043O0044726F7003073O00537472696B653103023O005F4703053O00766F696365030B3O004865617679412O7461636B00234O00147O0020235O00010020235O00020026153O00220001000300041F3O0022000100122A3O00043O0020235O00052O001400015O002023000100010006002023000100010002002023000100010007001218000200084O00123O000200020006103O00190001000100041F3O0019000100122A3O00043O0020235O00052O001400015O002023000100010006002023000100010002002023000100010007001218000200094O00123O0002000200060C3O002200013O00041F3O002200012O00143O00023O00122A0001000A3O00202300010001000B00202300010001000C2O00023O000200022O00093O00014O00143O00034O0014000100014O000D3O000200012O00163O00017O00233O001A012O001A012O001A012O001A012O001A012O001B012O001B012O001B012O001B012O001B012O001B012O001B012O001B012O001B012O001B012O001B012O001B012O001B012O001B012O001B012O001B012O001B012O001B012O001B012O001B012O001C012O001C012O001C012O001C012O001C012O001C012O001D012O001D012O001D012O0020012O00153O0003043O0067616D6503103O0055736572496E7075745365727669636503113O00476574466F637573656454657874426F780003073O004B6579436F646503043O00456E756D03013O004803023O005F4703093O00766F6963657061636B03053O004B6972797503073O00416B6979616D6103063O004D616A696D6103063O0056756C63616E03053O00766F69636503063O00566F69636573030E3O0046696E6446697273744368696C6403103O0053656C656374656420766F6963653A2003043O004E616D6503063O00436F6C6F723303073O0066726F6D524742025O00E06F40013D3O00122A000100013O0020230001000100020020050001000100032O00020001000200020026150001003C0001000400041F3O003C000100202300013O000500122A000200063O00202300020002000500202300020002000700061A0001003C0001000200041F3O003C000100122A000100083O002023000100010009002615000100130001000A00041F3O0013000100122A000100083O00302800010009000B00041F3O0027000100122A000100083O0020230001000100090026150001001A0001000B00041F3O001A000100122A000100083O00302800010009000C00041F3O0027000100122A000100083O002023000100010009002615000100210001000C00041F3O0021000100122A000100083O00302800010009000D00041F3O0027000100122A000100083O002023000100010009002615000100270001000D00041F3O0027000100122A000100083O00302800010009000A00122A000100084O001400025O00202300020002000F00200500020002001000122A000400083O0020230004000400092O00120002000400020010060001000E00022O0014000100013O001218000200113O00122A000300083O00202300030003000E0020230003000300122O001C00020002000300122A000300133O002023000300030014001218000400153O001218000500153O001218000600154O0011000300064O000100013O00012O00163O00017O003D3O0022012O0022012O0022012O0022012O0022012O0022012O0023012O0023012O0023012O0023012O0023012O0023012O0024012O0024012O0024012O0024012O0025012O0025012O0025012O0026012O0026012O0026012O0026012O0027012O0027012O0027012O0028012O0028012O0028012O0028012O0029012O0029012O0029012O002A012O002A012O002A012O002A012O002B012O002B012O002D012O002D012O002D012O002D012O002D012O002D012O002D012O002D012O002E012O002E012O002E012O002E012O002E012O002E012O002E012O002E012O002E012O002E012O002E012O002E012O002E012O0031012O002B012O00013O00013O00023O00023O00023O00033O00043O00053O00063O00063O00073O00073O00073O00073O00073O00073O00073O00083O00083O00083O00083O00083O00093O000A3O000A3O000A3O000A3O000A3O000B3O000B3O000B3O000B3O000B3O000C3O000A3O000D3O00193O00193O00223O00233O002C3O002C3O00413O00413O00413O00423O00423O00423O00433O00433O00443O00443O00443O00443O00443O00443O00443O00443O00443O00443O00443O00443O00443O00453O00473O00473O00483O00483O00483O00483O00493O00493O00493O00493O00493O004A3O004B3O004C3O004D3O004D3O004D3O004D3O004D3O004D3O004D3O004D3O004E3O004E3O004E3O004E3O004E3O004E3O004E3O004E3O004F3O004F3O004F3O00503O00503O00523O00523O00503O00533O00533O00573O00573O00573O00533O00583O00583O005E3O005E3O005E3O00583O005F3O005F3O005F3O005F3O005F3O00603O00613O00623O00633O00633O00633O00633O00693O00693O00693O00633O006A3O006A3O006A3O006A3O006A3O006A3O006A3O006A3O006A3O006B3O006B3O006B3O006B3O006B3O006B3O006B3O006B3O006B3O006B3O006B3O006B3O006B3O006C3O006E3O006F3O006F3O00833O00833O00833O00833O00833O006F3O00843O00853O00853O00853O00853O00853O00853O00863O00863O00863O00873O00873O00873O00883O00883O00883O00883O00883O00883O00893O00893O00D23O00D23O00D23O00D23O00D23O00D23O00D23O00D23O00D23O00D23O00D23O00D23O00D23O00893O00D33O00D33O00D33O00D73O00D33O00D83O00D93O00DA3O00DA3O00DA3O00DA3O00DB3O00DD3O00DD3O00DD3O00EF3O00EF3O00EF3O00EF3O00EF3O00EF3O00EF3O00EF3O00DD3O00F03O00F13O00F13O00F13O00F13O00FA3O00FA3O00FA3O00FA3O00FA3O00FA3O00FA3O00F13O00FB3O00FB3O00FB3O00FB3O00FB3O00FB3O00FC3O00FC3O00FD3O00FE3O00FE3O00FF3O00FF3O00FF3O00FF4O00013O00013O00013O00012O002O012O002O012O002O012O002O012O0002012O0002012O0002012O0002012O0003012O0003012O0003012O0008012O0008012O0008012O0008012O0008012O0003012O0009012O000A012O000A012O000A012O0018012O0018012O0018012O0018012O0018012O0018012O000A012O0019012O0019012O0019012O0020012O0020012O0020012O0020012O0020012O0019012O0021012O0021012O0021012O0021012O0031012O0031012O0031012O0021012O0031012O00",GetFEnv(),...);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement