Advertisement
Right2Fight

Untitled

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