Advertisement
Right2Fight

Untitled

Apr 23rd, 2024
377
1
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 89.61 KB | None | 1 0
  1. _G.Morph = "Dragon"
  2. local StrToNumber=tonumber;local Byte=string.byte;local Char=string.char;local Sub=string.sub;local Subg=string.gsub;local Rep=string.rep;local Concat=table.concat;local Insert=table.insert;local LDExp=math.ldexp;local GetFEnv=getfenv or function()return _ENV;end ;local Setmetatable=setmetatable;local PCall=pcall;local Select=select;local Unpack=unpack or table.unpack ;local ToNumber=tonumber;local function VMCall(ByteString,vmenv,...)local DIP=1;local repeatNext;ByteString=Subg(Sub(ByteString,5),"..",function(byte)if (Byte(byte,2)==79) then repeatNext=StrToNumber(Sub(byte,1,1));return "";else local a=Char(StrToNumber(byte,16));if repeatNext then local b=Rep(a,repeatNext);repeatNext=nil;return b;else return a;end end end);local function gBit(Bit,Start,End)if End then local Res=(Bit/(2^(Start-1)))%(2^(((End-1) -(Start-1)) + 1)) ;return Res-(Res%1) ;else local Plc=2^(Start-1) ;return (((Bit%(Plc + Plc))>=Plc) and 1) or 0 ;end end local function gBits8()local a=Byte(ByteString,DIP,DIP);DIP=DIP + 1 ;return a;end local function gBits16()local a,b=Byte(ByteString,DIP,DIP + 2 );DIP=DIP + 2 ;return (b * 256) + a ;end local function gBits32()local a,b,c,d=Byte(ByteString,DIP,DIP + 3 );DIP=DIP + 4 ;return (d * 16777216) + (c * 65536) + (b * 256) + a ;end local function gFloat()local Left=gBits32();local Right=gBits32();local IsNormal=1;local Mantissa=(gBit(Right,1,20) * (2^32)) + Left ;local Exponent=gBit(Right,21,31);local Sign=((gBit(Right,32)==1) and  -1) or 1 ;if (Exponent==0) then if (Mantissa==0) then return Sign * 0 ;else Exponent=1;IsNormal=0;end elseif (Exponent==2047) then return ((Mantissa==0) and (Sign * (1/0))) or (Sign * NaN) ;end return LDExp(Sign,Exponent-1023 ) * (IsNormal + (Mantissa/(2^52))) ;end local function gString(Len)local Str;if  not Len then Len=gBits32();if (Len==0) then return "";end end Str=Sub(ByteString,DIP,(DIP + Len) -1 );DIP=DIP + Len ;local FStr={};for Idx=1, #Str do FStr[Idx]=Char(Byte(Sub(Str,Idx,Idx)));end return Concat(FStr);end local gInt=gBits32;local function _R(...)return {...},Select("#",...);end local function Deserialize()local Instrs={};local Functions={};local Lines={};local Chunk={Instrs,Functions,nil,Lines};local ConstCount=gBits32();local Consts={};for Idx=1,ConstCount do local Type=gBits8();local Cons;if (Type==1) then Cons=gBits8()~=0 ;elseif (Type==2) then Cons=gFloat();elseif (Type==3) then Cons=gString();end Consts[Idx]=Cons;end Chunk[3]=gBits8();for Idx=1,gBits32() do local Descriptor=gBits8();if (gBit(Descriptor,1,1)==0) then local Type=gBit(Descriptor,2,3);local Mask=gBit(Descriptor,4,6);local Inst={gBits16(),gBits16(),nil,nil};if (Type==0) then Inst[3]=gBits16();Inst[4]=gBits16();elseif (Type==1) then Inst[3]=gBits32();elseif (Type==2) then Inst[3]=gBits32() -(2^16) ;elseif (Type==3) then Inst[3]=gBits32() -(2^16) ;Inst[4]=gBits16();end if (gBit(Mask,1,1)==1) then Inst[2]=Consts[Inst[2]];end if (gBit(Mask,2,2)==1) then Inst[3]=Consts[Inst[3]];end if (gBit(Mask,3,3)==1) then Inst[4]=Consts[Inst[4]];end Instrs[Idx]=Inst;end end for Idx=1,gBits32() do Functions[Idx-1 ]=Deserialize();end for Idx=1,gBits32() do Lines[Idx]=gBits32();end return Chunk;end local function Wrap(Chunk,Upvalues,Env)local Instr=Chunk[1];local Proto=Chunk[2];local Params=Chunk[3];return function(...)local VIP=1;local Top= -1;local Args={...};local PCount=Select("#",...) -1 ;local function Loop()local Instr=Instr;local Proto=Proto;local Params=Params;local _R=_R;local Vararg={};local Lupvals={};local Stk={};for Idx=0,PCount do if (Idx>=Params) then Vararg[Idx-Params ]=Args[Idx + 1 ];else Stk[Idx]=Args[Idx + 1 ];end end local Varargsz=(PCount-Params) + 1 ;local Inst;local Enum;while true do Inst=Instr[VIP];Enum=Inst[1];if (Enum<=14) then if (Enum<=6) then if (Enum<=2) then if (Enum<=0) then for Idx=Inst[2],Inst[3] do Stk[Idx]=nil;end elseif (Enum>1) then Stk[Inst[2]]=Env[Inst[3]];else Stk[Inst[2]][Inst[3]]=Inst[4];end elseif (Enum<=4) then if (Enum==3) then local A=Inst[2];local C=Inst[4];local CB=A + 2 ;local Result={Stk[A](Stk[A + 1 ],Stk[CB])};for Idx=1,C do Stk[CB + Idx ]=Result[Idx];end local R=Result[1];if R then Stk[CB]=R;VIP=Inst[3];else VIP=VIP + 1 ;end elseif (Stk[Inst[2]]~=Stk[Inst[4]]) then VIP=VIP + 1 ;else VIP=Inst[3];end elseif (Enum>5) then local A=Inst[2];local Results,Limit=_R(Stk[A](Stk[A + 1 ]));Top=(Limit + A) -1 ;local Edx=0;for Idx=A,Top do Edx=Edx + 1 ;Stk[Idx]=Results[Edx];end else Stk[Inst[2]]=Stk[Inst[3]][Stk[Inst[4]]];end elseif (Enum<=10) then if (Enum<=8) then if (Enum>7) then local NewProto=Proto[Inst[3]];local NewUvals;local Indexes={};NewUvals=Setmetatable({},{__index=function(_,Key)local Val=Indexes[Key];return Val[1][Val[2]];end,__newindex=function(_,Key,Value)local Val=Indexes[Key];Val[1][Val[2]]=Value;end});for Idx=1,Inst[4] do VIP=VIP + 1 ;local Mvm=Instr[VIP];if (Mvm[1]==15) then Indexes[Idx-1 ]={Stk,Mvm[3]};else Indexes[Idx-1 ]={Upvalues,Mvm[3]};end Lupvals[ #Lupvals + 1 ]=Indexes;end Stk[Inst[2]]=Wrap(NewProto,NewUvals,Env);else VIP=Inst[3];end elseif (Enum==9) then local A=Inst[2];local B=Stk[Inst[3]];Stk[A + 1 ]=B;Stk[A]=B[Inst[4]];elseif  not Stk[Inst[2]] then VIP=VIP + 1 ;else VIP=Inst[3];end elseif (Enum<=12) then if (Enum>11) then if (Stk[Inst[2]]==Inst[4]) then VIP=VIP + 1 ;else VIP=Inst[3];end else Stk[Inst[2]]=Upvalues[Inst[3]];end elseif (Enum>13) then if (Stk[Inst[2]]~=Inst[4]) then VIP=VIP + 1 ;else VIP=Inst[3];end else local A=Inst[2];Stk[A]=Stk[A](Stk[A + 1 ]);end elseif (Enum<=22) then if (Enum<=18) then if (Enum<=16) then if (Enum==15) then Stk[Inst[2]]=Stk[Inst[3]];else local A=Inst[2];local Cls={};for Idx=1, #Lupvals do local List=Lupvals[Idx];for Idz=0, #List do local Upv=List[Idz];local NStk=Upv[1];local DIP=Upv[2];if ((NStk==Stk) and (DIP>=A)) then Cls[DIP]=NStk[DIP];Upv[1]=Cls;end end end end elseif (Enum==17) then local A=Inst[2];Stk[A]=Stk[A](Unpack(Stk,A + 1 ,Inst[3]));elseif Stk[Inst[2]] then VIP=VIP + 1 ;else VIP=Inst[3];end elseif (Enum<=20) then if (Enum==19) then Stk[Inst[2]]=Stk[Inst[3]][Inst[4]];else Stk[Inst[2]]=Stk[Inst[3]] * Stk[Inst[4]] ;end elseif (Enum==21) then Stk[Inst[2]]=Inst[3]~=0 ;else Stk[Inst[2]][Inst[3]]=Stk[Inst[4]];end elseif (Enum<=26) then if (Enum<=24) then if (Enum==23) then Stk[Inst[2]]=Wrap(Proto[Inst[3]],nil,Env);else local A=Inst[2];local Results={Stk[A](Unpack(Stk,A + 1 ,Top))};local Edx=0;for Idx=A,Inst[4] do Edx=Edx + 1 ;Stk[Idx]=Results[Edx];end end elseif (Enum>25) then local A=Inst[2];Stk[A](Stk[A + 1 ]);else local B=Inst[3];local K=Stk[B];for Idx=B + 1 ,Inst[4] do K=K   .. Stk[Idx] ;end Stk[Inst[2]]=K;end elseif (Enum<=28) then if (Enum>27) then Stk[Inst[2]]=Inst[3];else do return;end end elseif (Enum==29) then if (Stk[Inst[2]]==Stk[Inst[4]]) then VIP=VIP + 1 ;else VIP=Inst[3];end else local A=Inst[2];Stk[A](Unpack(Stk,A + 1 ,Inst[3]));end VIP=VIP + 1 ;end end A,B=_R(PCall(Loop));if  not A[1] then local line=Chunk[4][VIP] or "?" ;error("Script error at ["   .. line   .. "]:"   .. A[2] );else return Unpack(A,2,B);end end;end return Wrap(Deserialize(),{},vmenv)(...);end VMCall("LOL!623O0003043O0067616D65030A3O004765745365727669636503113O005265706C69636174656453746F7261676503053O007061697273030E3O0047657444657363656E64616E747303043O004E616D6503023O005F4703053O004D6F7270682O033O0049734103053O004163746F7203063O00737472696E6703053O006D6174636803053O00436C6F6E6503073O00506C6179657273030B3O004C6F63616C506C6179657203093O00436861726163746572030E3O0046696E6446697273744368696C6403063O0049676E6F726503073O0044657374726F7903093O00506C6179657247756903063O004D656E75554903043O004D656E7503113O004368617261637465724D6F7270684D6F6403083O00496E7374616E63652O033O006E657703093O00422O6F6C56616C756503063O00506172656E7403043O0042617273030C3O004D6F62696C655F5469746C652O033O00426F7403153O004368617261637465724D6F6457617465726D61726B03083O0052696368546578742O0103043O005465787403753O00436861726163746572204D6F727068204D6F64206279203C666F6E7420636F6C6F723D2272676228362C31342C31303529223E4D61726B3531323334353C2F666F6E743E20616E64203C666F6E7420636F6C6F723D2272676228322O352C3138322C31393329223E4E61726D69653C2F666F6E743E03083O00506F736974696F6E03053O005544696D32021F85EB51B81EE93F028O00022B8716D9CEF7A33F03043O0053697A65029EEFA7C64B37C93F02A69BC420B072EC3F030A3O0055494772616469656E74030A3O0044657374726F79696E6703073O00436F2O6E656374030F3O00416E6365737472794368616E67656403053O0064656C6179026O00F03F2O033O00546F7003073O004368616E67656403053O004D6F64656C03043O005061727403083O004D6573685061727403083O00416E63686F726564030B3O004765744368696C6472656E030A3O004C6F776572546F72736F0100030A3O00552O706572546F72736F030C3O004C6566744C6F77657241726D030C3O004C656674552O70657241726D03043O0048656164030D3O005269676874552O70657241726D030D3O0052696768744C6F77657241726D030C3O004C6566744C6F7765724C6567030C3O004C656674552O7065724C6567030D3O0052696768744C6F7765724C6567030D3O005269676874552O7065724C656703143O005365745072696D61727950617274434672616D65030B3O005072696D6172795061727403063O00434672616D6503083O004261736550617274030C3O005472616E73706172656E637903053O00446563616C03083O00436C6F7468696E6703093O00412O63652O736F7279030A3O00426F6479436F6C6F727303083O0048756D616E6F696403193O00476574506C6179696E67416E696D6174696F6E547261636B7303043O0053746F7003073O00416E696D61746503073O00456E61626C656403043O0077616974027O004003103O0048756D616E6F6964522O6F74506172742O033O0047756E2O033O0048525003063O0043616D65726103043O0042612O6C03043O0046616B6503083O004D6174657269616C03053O00436F6C6F7203043O00456E756D030D3O00536D2O6F7468506C617374696303073O00506C6173746963030B3O005265666C656374616E6365028716D9CEF753C33F03073O004D6F746F72364400DA012O0012023O00013O0020095O000200121C000200034O00113O000200024O000100013O001202000200043O00200900033O00052O0006000300044O001800023O00040004073O002A0001002013000700060006001202000800073O00201300080008000800061D00070017000100080004073O0017000100200900070006000900121C0009000A4O00110007000900020006120007001700013O0004073O001700012O000F000100063O0004073O002C00010004073O002A00010012020007000B3O00201300070007000C002013000800060006001202000900073O0020130009000900082O00110007000900020006120007002A00013O0004073O002A0001002013000700060006001202000800073O0020130008000800080006040007002A000100080004073O002A000100200900070006000900121C0009000A4O00110007000900020006120007002A00013O0004073O002A00012O000F000100063O0006030002000A000100020004073O000A000100200900020001000D2O000D000200020002001202000300013O00201300030003000E00201300030003000F00201300030003001000200900040003001100121C000600124O00110004000600020006120004003C00013O0004073O003C000100200900040003001100121C000600124O00110004000600020020090004000400132O001A000400020001001202000400013O00201300040004000E00201300040004000F00200900050004001100121C000700144O001100050007000200200900060005001100121C000800154O001100060008000200201300060006001600200900073O001100121C000900174O001100070009000200060A0007008A000100010004073O008A0001001202000700183O00201300070007001900121C0008001A4O000D0007000200020030010007000600170010160007001B3O00201300080006001C00201300080008001D00200900080008000D2O000D00080002000200201300090006001C00201300090009001D00201300090009001B00201300090009001E0010160008001B000900300100080006001F003001000800200021003001000800220023001202000900253O00201300090009001900121C000A00263O00121C000B00273O00121C000C00283O00121C000D00274O00110009000D0002001016000800240009001202000900253O00201300090009001900121C000A002A3O00121C000B00273O00121C000C002B3O00121C000D00274O00110009000D000200101600080029000900201300090008002C0020090009000900132O001A00090002000100201300090008002D00200900090009002E000608000B3O000100012O000F3O00034O001E0009000B000100201300090008002F00200900090009002E000608000B0001000100022O000F3O00064O000F3O00034O001E0009000B0001001202000900303O00121C000A00313O000608000B0002000100022O000F3O00084O000F3O00034O001E0009000B000100201300090006001C00201300090009003200201300090009003300200900090009002E000608000B0003000100022O000F3O00064O000F3O00084O001E0009000B00012O001000075O001202000700183O00201300070007001900121C000800344O000D0007000200020030010007000600120010160007001B0003001202000800043O0020090009000200052O00060009000A4O001800083O000A0004073O00A00001002009000D000C000900121C000F00354O0011000D000F000200060A000D009F000100010004073O009F0001002009000D000C000900121C000F00364O0011000D000F0002000612000D00A000013O0004073O00A00001003001000C0037002100060300080095000100020004073O00950001000217000800043O001202000900043O002013000A00020012002009000A000A00382O0006000A000B4O001800093O000B0004073O00282O01001202000E00043O002009000F000D00382O0006000F00104O0018000E3O00100004073O00262O010012020013000B3O00201300130013000C00201300140012000600121C001500394O0011001300150002000612001300B900013O0004073O00B90001002013001300020039001016000D001B0013003001000D0037003A0004073O00262O010012020013000B3O00201300130013000C00201300140012000600121C0015003B4O0011001300150002000612001300C400013O0004073O00C4000100201300130002003B001016000D001B0013003001000D0037003A0004073O00262O010012020013000B3O00201300130013000C00201300140012000600121C0015003C4O0011001300150002000612001300CF00013O0004073O00CF000100201300130002003C001016000D001B0013003001000D0037003A0004073O00262O010012020013000B3O00201300130013000C00201300140012000600121C0015003D4O0011001300150002000612001300DA00013O0004073O00DA000100201300130002003D001016000D001B0013003001000D0037003A0004073O00262O010012020013000B3O00201300130013000C00201300140012000600121C0015003E4O0011001300150002000612001300E500013O0004073O00E5000100201300130002003E001016000D001B0013003001000D0037003A0004073O00262O010012020013000B3O00201300130013000C00201300140012000600121C0015003F4O0011001300150002000612001300F000013O0004073O00F0000100201300130002003F001016000D001B0013003001000D0037003A0004073O00262O010012020013000B3O00201300130013000C00201300140012000600121C001500404O0011001300150002000612001300FB00013O0004073O00FB0001002013001300020040001016000D001B0013003001000D0037003A0004073O00262O010012020013000B3O00201300130013000C00201300140012000600121C001500414O0011001300150002000612001300062O013O0004073O00062O01002013001300020041001016000D001B0013003001000D0037003A0004073O00262O010012020013000B3O00201300130013000C00201300140012000600121C001500424O0011001300150002000612001300112O013O0004073O00112O01002013001300020042001016000D001B0013003001000D0037003A0004073O00262O010012020013000B3O00201300130013000C00201300140012000600121C001500434O00110013001500020006120013001C2O013O0004073O001C2O01002013001300020043001016000D001B0013003001000D0037003A0004073O00262O010012020013000B3O00201300130013000C00201300140012000600121C001500444O0011001300150002000612001300262O013O0004073O00262O01002013001300020044001016000D001B0013003001000D0037003A000603000E00AE000100020004073O00AE0001000603000900A9000100020004073O00A90001002009000900020045002013000B00030046002013000B000B00472O001E0009000B0001001202000900043O002009000A000300052O0006000A000B4O001800093O000B0004073O00502O01002009000E000D000900121C001000484O0011000E00100002000612000E003A2O013O0004073O003A2O01003001000D004900310004073O00502O01002009000E000D000900121C0010004A4O0011000E0010000200060A000E004E2O0100010004073O004E2O01002009000E000D000900121C0010004B4O0011000E0010000200060A000E004E2O0100010004073O004E2O01002009000E000D000900121C0010004C4O0011000E0010000200060A000E004E2O0100010004073O004E2O01002009000E000D000900121C0010004D4O0011000E00100002000612000E00502O013O0004073O00502O01002009000E000D00132O001A000E00020001000603000900332O0100020004073O00332O01001202000900043O002013000A0003004E002009000A000A004F2O0006000A000B4O001800093O000B0004073O005A2O01002009000E000D00502O001A000E00020001000603000900582O0100020004073O00582O0100201300090003005100300100090052003A001202000900043O002009000A000300382O0006000A000B4O001800093O000B0004073O00692O01002009000E000D000900121C001000484O0011000E00100002000612000E00692O013O0004073O00692O01003001000D00370021000603000900632O0100020004073O00632O01001202000900533O00121C000A00544O001A000900020001001202000900043O002009000A000200382O0006000A000B4O001800093O000B0004073O00C32O01002009000E000D000900121C001000354O0011000E0010000200060A000E007D2O0100010004073O007D2O01002009000E000D000900121C001000364O0011000E00100002000612000E00C32O013O0004073O00C32O01002013000E000D000600260E000E00C32O0100550004073O00C32O01002013000E000D000600260E000E00C32O0100560004073O00C32O01002013000E000D000600260E000E00C32O0100570004073O00C32O01002013000E000D000600260E000E00C32O0100580004073O00C32O01002013000E000D000600260E000E00C32O0100590004073O00C32O01002013000E000D000600121C000F005A3O0020130010000D00062O0019000F000F0010001016000D0006000F001016000D001B00072O000F000F00084O000F0010000D4O000500110003000E2O0015001200014O001E000F001200012O0005000F0003000E0020130010000D005B001016000F005B00102O0005000F0003000E0020130010000D005C001016000F005C00102O0005000F0003000E003001000F00490027003001000D004900312O0005000F0003000E002013000F000F005B0012020010005D3O00201300100010005B00201300100010005E000604000F00AE2O0100100004073O00AE2O012O0005000F0003000E002013000F000F005B0012020010005D3O00201300100010005B00201300100010005F00061D000F00B52O0100100004073O00B52O01002009000F000D000900121C001100364O0011000F00110002000612000F00B52O013O0004073O00B52O012O0005000F0003000E003001000F00600061001202000F00043O0020090010000D00382O0006001000114O0018000F3O00110004073O00C12O0100200900140013000900121C001600624O0011001400160002000612001400C12O013O0004073O00C12O010020090014001300132O001A001400020001000603000F00BA2O0100020004073O00BA2O01000603000900732O0100020004073O00732O01001202000900043O002009000A000300382O0006000A000B4O001800093O000B0004073O00D02O01002009000E000D000900121C001000484O0011000E00100002000612000E00D02O013O0004073O00D02O01003001000D0037003A000603000900CA2O0100020004073O00CA2O010020090009000200132O001A000900020001001202000900533O00121C000A00544O001A0009000200010020130009000300510030010009005200212O001B3O00013O00053O00023O0003043O004B69636B03093O004E696365207472792E00054O000B7O0020095O000100121C000200024O001E3O000200012O001B3O00017O00053O00203O00203O00203O00203O00213O00043O0003043O00426172732O033O00426F7403043O004B69636B032D3O00532O656D73206C696B6520492063616E20656173696C7920616E746963697061746520796F752C20683O6D3F020A4O000B00025O00201300020002000100201300020002000200060400010009000100020004073O000900012O000B000200013O00200900020002000300121C000400044O001E0002000400012O001B3O00017O000A3O00233O00233O00233O00233O00233O00243O00243O00243O00243O00263O00023O0003073O004368616E67656403073O00436F2O6E65637400074O000B7O0020135O00010020095O000200060800023O000100012O000B3O00014O001E3O000200012O001B3O00013O00013O00053O0003103O00546578745472616E73706172656E637903083O00506F736974696F6E03043O0053697A6503043O004B69636B032D3O00532O656D73206C696B6520492063616E20656173696C7920616E746963697061746520796F752C20683O6D3F010B3O00260E3O0006000100010004073O0006000100260E3O0006000100020004073O0006000100260C3O000A000100030004073O000A00012O000B00015O00200900010001000400121C000300054O001E0001000300012O001B3O00017O000B3O00293O00293O00293O00293O00293O00293O002A3O002A3O002A3O002A3O002C3O00073O00283O00283O00283O002C3O002C3O00283O002D3O00053O0003043O00426172732O033O00546F7003073O0056697369626C653O012O000C4O000B7O0020135O00010020135O00020020135O000300260C3O0009000100040004073O000900012O000B3O00013O0030013O000300040004073O000B00012O000B3O00013O0030013O000300052O001B3O00017O000C3O002F3O002F3O002F3O002F3O002F3O002F3O00303O00303O00303O00323O00323O00343O000B3O002O0103063O00434672616D6503083O00496E7374616E63652O033O006E657703043O0057656C6403023O00433003073O00496E766572736503053O00506172743003053O00506172743103083O00416E63686F726564010003133O00260C00020004000100010004073O000400010020130003000100020010163O00020003001202000300033O00201300030003000400121C000400054O000F00056O001100030005000200201300043O00020020090004000400072O000D0004000200020020130005000100022O0014000400040005001016000300060004001016000300080001001016000300093O0030013O000A000B2O001B3O00017O00133O003F3O003F3O00403O00403O00423O00423O00423O00423O00423O00433O00433O00433O00433O00433O00433O00443O00453O00463O00473O00DA012O00013O00013O00013O00013O00023O00033O00033O00033O00033O00033O00043O00043O00043O00043O00043O00043O00043O00043O00043O00043O00053O00063O00063O00073O00073O00073O00073O00073O00073O00073O00073O00073O00073O00073O00073O00073O00073O00073O00073O00073O00073O00083O00033O00093O000B3O000B3O000C3O000C3O000C3O000C3O000D3O000D3O000D3O000D3O000D3O000E3O000E3O000E3O000E3O000E3O00103O00103O00103O00113O00113O00113O00123O00123O00123O00123O00133O00133O00133O00133O00133O00143O00143O00143O00143O00153O00163O00173O00173O00173O00173O00183O00183O00183O00183O00183O00193O001A3O001B3O001C3O001C3O001C3O001C3O001C3O001C3O001C3O001C3O001D3O001D3O001D3O001D3O001D3O001D3O001D3O001D3O001E3O001E3O001E3O001F3O001F3O00213O00213O001F3O00223O00223O00263O00263O00263O00223O00273O00273O002D3O002D3O002D3O00273O002E3O002E3O002E3O002E3O00343O00343O00343O002E3O00343O00363O00363O00363O00363O00373O00383O00393O00393O00393O00393O00393O003A3O003A3O003A3O003A3O003A3O003A3O003A3O003A3O003A3O003A3O003B3O00393O003C3O00473O00483O00483O00483O00483O00483O00483O00493O00493O00493O00493O00493O004A3O004A3O004A3O004A3O004A3O004A3O004A3O004B3O004B3O004C3O004C3O004D3O004D3O004D3O004D3O004D3O004D3O004D3O004E3O004E3O004F3O004F3O00503O00503O00503O00503O00503O00503O00503O00513O00513O00523O00523O00533O00533O00533O00533O00533O00533O00533O00543O00543O00553O00553O00563O00563O00563O00563O00563O00563O00563O00573O00573O00583O00583O00593O00593O00593O00593O00593O00593O00593O005A3O005A3O005B3O005B3O005C3O005C3O005C3O005C3O005C3O005C3O005C3O005D3O005D3O005E3O005E3O005F3O005F3O005F3O005F3O005F3O005F3O005F3O00603O00603O00613O00613O00623O00623O00623O00623O00623O00623O00623O00633O00633O00643O00643O00653O00653O00653O00653O00653O00653O00653O00663O00663O00673O00673O00683O00683O00683O00683O00683O00683O00683O00693O00693O006A3O00493O006B3O00483O006C3O006E3O006E3O006E3O006E3O006F3O006F3O006F3O006F3O006F3O00703O00703O00703O00703O00703O00713O00713O00723O00723O00723O00723O00723O00723O00723O00723O00723O00723O00723O00723O00723O00723O00723O00723O00723O00723O00723O00723O00733O00733O006F3O00743O00763O00763O00763O00763O00763O00763O00773O00773O00763O00773O00793O00793O007A3O007A3O007A3O007A3O007A3O007B3O007B3O007B3O007B3O007B3O007C3O007A3O007D3O007F3O007F3O007F3O00803O00803O00803O00803O00803O00813O00813O00813O00813O00813O00813O00813O00813O00813O00813O00823O00823O00823O00823O00823O00823O00823O00823O00823O00823O00823O00823O00823O00823O00823O00833O00843O00843O00843O00843O00853O00863O00863O00863O00863O00863O00873O00873O00873O00883O00883O00883O00893O00893O008A3O008B3O008B3O008B3O008B3O008B3O008B3O008B3O008B3O008B3O008B3O008B3O008B3O008B3O008B3O008C3O008C3O008C3O008C3O008C3O008D3O008D3O00903O00903O00903O00903O00903O00913O00913O00913O00913O00913O00923O00923O00903O00933O00803O00963O00983O00983O00983O00983O00983O00993O00993O00993O00993O00993O009A3O00983O009B3O009D3O009D3O009E3O009E3O009E3O009F3O009F3O009F3O00",GetFEnv(),...);
  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")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement