What is getgc?

แชร์
ฝัง
  • เผยแพร่เมื่อ 12 พ.ย. 2024

ความคิดเห็น • 39

  • @noorachman
    @noorachman 2 ปีที่แล้ว +2

    Thanks for the tutorial! very useful.

  • @ZainandanGG
    @ZainandanGG หลายเดือนก่อน

    Good tutorial! Subscribed

  • @whetfaartz6685
    @whetfaartz6685 2 ปีที่แล้ว +1

    When I change a value with getgc, in some games with a anti cheat, I'll get banned or kicked like (adonis anti cheat) is there anyway to evade this

  • @bumpin2098
    @bumpin2098 2 ปีที่แล้ว

    thank you cuz I was stuck on this and you helped me

  • @lxBB
    @lxBB 2 ปีที่แล้ว +2

    i dont know anything about coding but it seems cool!

  • @FrostLua
    @FrostLua 3 หลายเดือนก่อน

    techhog's da goat

  • @jerka6708
    @jerka6708 ปีที่แล้ว

    could u do a tut on getsenv?

  • @robloxsfingexploits4359
    @robloxsfingexploits4359 2 ปีที่แล้ว +2

    Can you do anything to signals with getgc()? For example, there's a script like this
    sword:GetPropertyChangedSignal("Size"):Connect(function()
    player:Kick()
    end)
    Could you do anything to bypass that using getgc()?

    • @TechHog8984
      @TechHog8984  2 ปีที่แล้ว

      It is definitely possible, but I don't think that getgc is the right function here. Try using getconnections. Here's an example:
      local sword = pathToSword;
      local signal = sword:GetPropertyChangedSignal("Size");
      local connection;
      for i, con in next, getconnections(signal) do
      connection = con;
      end;
      connection:Disable();

  • @LionelMessy
    @LionelMessy ปีที่แล้ว

    Would it be possible to change the value in this? (It's a snippet of the decompiled code)
    local u4 = 35

    • @TechHog8984
      @TechHog8984  ปีที่แล้ว

      If that's inside of a function, then it's pretty easy. If it's just in the main script context, then it's a little more complicated. I would need more context; you could send the full code and a line number or the game, script path, and line number.

  • @asdasdlopk8718
    @asdasdlopk8718 2 ปีที่แล้ว +1

    can u make vid with editing local script values?

    • @TechHog8984
      @TechHog8984  2 ปีที่แล้ว

      This is a bit of a fuzzy topic because, as far as I know (and I might be wrong), there is no way to modify the locals of a script flat-out. You can, however, modify these locals specifically **when** they are being used (i.e editing the constants / upvalues of a function). If you want a video on how to do that, let me know.

  • @luxky
    @luxky 2 ปีที่แล้ว

    Hello can you give me the game link you used so I can use it as a reference and test getgc

  • @trinex64
    @trinex64 2 ปีที่แล้ว

    why do you use in next instead of in pairs?

    • @TechHog8984
      @TechHog8984  2 ปีที่แล้ว +1

      It's a habit of mine

  • @hussain2734
    @hussain2734 2 ปีที่แล้ว

    pls help why krnl dark dex not working for script viewer

    • @TechHog8984
      @TechHog8984  2 ปีที่แล้ว +1

      That is probably because krnl does not have a working decompiler. I can't do much to help because I am not a krnl developer.

  • @Fade.or.uscername_666
    @Fade.or.uscername_666 2 ปีที่แล้ว +1

    can you use that to change a module script?

    • @TechHog8984
      @TechHog8984  2 ปีที่แล้ว

      If a module returns a table, then yes.

  • @dreadloard2838
    @dreadloard2838 7 หลายเดือนก่อน

    does this work on server scripts?

    • @Aliqate
      @Aliqate 7 หลายเดือนก่อน +1

      No + he has a decompiler so its easier for him

  • @Jaquainnn
    @Jaquainnn 2 ปีที่แล้ว

    do this work with krnl?

  • @Null-Boi
    @Null-Boi ปีที่แล้ว +2

    Alternate title: How to be a skid

    • @TechHog8984
      @TechHog8984  ปีที่แล้ว

      ?????

    • @overjoyed4505
      @overjoyed4505 ปีที่แล้ว +1

      You realize synapse isn't just for skids to exploit games right, this is a practical use case for finding problems related with your own game.

  • @Sy-op3hq
    @Sy-op3hq 2 ปีที่แล้ว +1

    Roblox patched getgc()

    • @kageyama4557
      @kageyama4557 2 ปีที่แล้ว

      ye

    • @ABagOfCement
      @ABagOfCement 2 ปีที่แล้ว

      Is it useful or useless

    • @Sy-op3hq
      @Sy-op3hq 2 ปีที่แล้ว

      @@ABagOfCement its pretty useful idk much about it though

    • @Sy-op3hq
      @Sy-op3hq 2 ปีที่แล้ว

      @Sunken they did

    • @TechHog8984
      @TechHog8984  2 ปีที่แล้ว +2

      For future reference, to anyone reading this comment or any comments similar to this one, getgc IS NOT patched UNLESS you are using either Arceus X or any mobile executor. I do not know if it is for all mobile executors or not.

  • @Asuranim214
    @Asuranim214 ปีที่แล้ว

    So im trying to im trying to get inf defense on a dragon ball game but it won't work is there anythig wrong with my code? (Im using krnl and the game is dragon ball revenge.)
    local garbage = getgc(true);
    for I, Table in next garbage do
    if type(Table) == 'table' and rawget(Table,'Defense')
    rawset(Table,'Defense', math.huge);
    end;
    end;

    • @TechHog8984
      @TechHog8984  ปีที่แล้ว

      In your code, you forgot a "then" in your if statement:
      local garbage = getgc(true);
      for I, Table in next garbage do if type(Table) == 'table' and rawget(Table, 'Defense') then
      rawset(Table, 'Defense', math.huge); end;
      end;