Advertisement
Right2Fight

Untitled

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