Advanced Roblox Exploiting Scripting Tutorial Part 1 - Hookmetamethod

Поделиться
HTML-код
  • Опубликовано: 7 янв 2025

Комментарии •

  • @2xfi844
    @2xfi844 Год назад +2

    I tried to go along with this for gun ammo instead however i kept getting the error "Attempt to call instance Value" on the line with the hookmetamethod

    • @Aquifyhub
      @Aquifyhub  Год назад +1

      you were trying to call the model or the part of the gun itself as that is an instance, you use index for property's of an instance (like a part or something) and u use namecall for hooking something that is being called such as a remote event or a kick event

    • @rsgmj
      @rsgmj Месяц назад

      @@Aquifyhubso kan it be used to change a kick function like when u get kicked for InvokeServer,hookmetamethod etc.

  • @Arbuziknew
    @Arbuziknew 9 месяцев назад +6

    I can't figure out what "__index" means

  • @Voldigard
    @Voldigard Год назад

    Hey have you ever had the problem on the roblox microsoft version where if you hold right click to change your camera view on your mouse, when you release right click your mouse moves the direction you where moving your mouse? If so how did you fix it?

  • @GODWARE-l7y
    @GODWARE-l7y 4 месяца назад +1

    whats the point if this isnt gonna be serversided cant i just make a loop and change value

    • @beastaive2219
      @beastaive2219 3 месяца назад

      yeah u could lol

    • @ZyroGOAT
      @ZyroGOAT 2 месяца назад

      with hookmetamethod its more undetected

    • @yeehaw366
      @yeehaw366 2 месяца назад

      ​@@ZyroGOAThi Zyro if you know, what should i do if my executor doesnt support hookmetamethod? Im using solarav3

    • @przzz
      @przzz 20 дней назад

      @@yeehaw366 get a better exec, like wave or something like that

    • @yeehaw366
      @yeehaw366 20 дней назад

      @@przzz i got atlantis its better than wave cuz its absolutely free and 100% unc

  • @Brawlstarshba
    @Brawlstarshba Год назад +1

    is there a way to tell what is possible to spoof and what isnt?

    • @darkness0194
      @darkness0194 Год назад

      U can only hook Instances

    • @darkness0194
      @darkness0194 Год назад

      With hookmetamethod

    • @HarvoxRBX
      @HarvoxRBX 3 месяца назад

      @@darkness0194 u can hook methods with namecall

  • @SapphireScripter
    @SapphireScripter 23 дня назад

    You could just get infinite stanima by deliting the stanima thing

  • @bryntt
    @bryntt 6 месяцев назад

    Hey can u please put the script u used in desc cuz im on mobile and i cant see the script because its too small and blurry

  • @CITY512
    @CITY512 2 месяца назад

    the full american accent is crazy

  • @Zastly
    @Zastly Год назад +1

    Can you make tutorial on how to change values, FE not visual

    • @sdevilish
      @sdevilish Год назад

      Cant. Why? FE only works from the server side. No executor supports and will never have one.

    • @Aquifyhub
      @Aquifyhub  Год назад

      @@sdevilish Good Explanation

    • @robloxscripts-xj1qi
      @robloxscripts-xj1qi 3 месяца назад

      @@sdevilish FE bypass executors used to exist, and still do lmao.

  • @KaGaHUB
    @KaGaHUB 6 месяцев назад

    You gone now

  • @Cx8-69
    @Cx8-69 Год назад

    hey can i spoof module scripts? cuz thre is a game that if u change firerate it kicks you and i want to spoof it.

  • @Robloxblast
    @Robloxblast 6 месяцев назад

    game name

  • @KaGaHUB
    @KaGaHUB 10 месяцев назад

    How

  • @rsgmj
    @rsgmj Месяц назад

    thanks bro

  • @Gotlove321
    @Gotlove321 Год назад

    yooo

  • @blackman216
    @blackman216 Год назад

    my sript isnt working help please local humanoid = game:GetService("Players").LocalPlayer.Character.Humanoid
    local OldIndex = nil
    OldIndex = hookmetamethod(game, "__index", function(Self, Key)
    if not checkcaller() and Self == humanoid and Key == "WalkSpeed" then
    return 16
    end
    return OldIndex(Self, Key)
    end)
    print('hi')