IMGUI EXTERNAL OVERLAY TUTORIAL

Поділитися
Вставка
  • Опубліковано 21 січ 2025

КОМЕНТАРІ • 257

  • @cazz
    @cazz  2 роки тому +58

    For those of you who want to make the ESP. Update the offsets (use hazedumper) and at 29:46 the cut-off line (346) is simply 0x10 (the size of each entity).
    Also, it’s “laggy” because I left VSync on so turn that off with Present(0U, 0U);
    Good luck!

    • @RealityV-d2r
      @RealityV-d2r Рік тому

      @cazz bonjour comment on fait pour compiler les fichiers au menu ?

    • @JayRagon
      @JayRagon Рік тому

      When I set swap_chain->present to 0U, 0U it uses 100% gpu. When i try to add a this_thread::sleep_for it gets really laggy. I want it to run without vsync but with some sort of sleep

    • @salzlord
      @salzlord Рік тому

      ⁠@@JayRagonyou should just be able to sleep for a few milliseconds. Won’t be draining your gpu and also it won’t be too visible for the human eye.
      I believe 5 microseconds would also do the job. The less time you sleep the more gpu has to work though so that might not work for everyone. Also you can just ask chatgpt or pste your code into it and ask accordingly.
      Best of luck

    • @johnmcook1
      @johnmcook1 Рік тому

      bool GetRenderSize(HWND targetWindow, int& width, int& height) {
      // Get the client area size of the target window
      RECT clientRect;
      if (GetClientRect(targetWindow, &clientRect)) {
      width = clientRect.right - clientRect.left;
      height = clientRect.bottom - clientRect.top;
      return true;
      } else {
      return false;
      }
      }
      const HWND window = CreateWindowExW(
      WS_EX_TOPMST | WS_EX_TRANSPARENT | WS_EX_LAYERED,
      wc.;pszClassName,
      L"External Overlay",
      WS_POPUP,
      0,
      0,
      width,
      hieght,
      nullptr,
      nullptr,
      wc.hInstance,
      nullptr,
      );

  • @sepremz
    @sepremz 2 роки тому +8

    welcome back

  • @blahyourmamafoo
    @blahyourmamafoo 5 місяців тому

    This video is amazing! Not impossible to figure it all out manually, but this video really helps as a starting point!

  • @Hostlyy
    @Hostlyy 2 роки тому +1

    finally man been looking towards this vid

  • @chavo6613
    @chavo6613 Рік тому +6

    Hi Cazz, I would like to know if I can add an ImGui window in this program, because I have tried and I can't click my ImGui window and I would like to be able to render this window so that I can use it. I wait your answer. Thank you so much

    • @flextradesteam
      @flextradesteam 10 місяців тому

      Bro, u find solution? Sorry it was 1 y ago, but i have same problem. :(

    • @VortexServicesX
      @VortexServicesX Місяць тому

      you remove WS_EX_TRANSPARENT and only keep WS_EX_LAYERED and WS_EX_TOPMOST then replace the setlayeredwindow with: SetLayeredWindowAttributes(window, RGB(0, 0, 0), 255, LWA_COLORKEY); it fixed for me and i can interact with the imgui within the render overlay

  • @xillian
    @xillian 2 роки тому

    Amazing video. cazz is da goat

  • @Neight187
    @Neight187 Рік тому +3

    How can I do it that if I open the .exe the cheat-menu window and the external overlay window opens?

  • @Mediacy1
    @Mediacy1 2 роки тому +1

    at around 8:45 for ImGui. If I use a 64x what do I files do I use.

    • @ballsack8386
      @ballsack8386 2 роки тому

      i want to know aswell

    • @cazz
      @cazz  2 роки тому

      the same files, "win32" is for x86 & x64

    • @Mediacy1
      @Mediacy1 2 роки тому +1

      @@cazz ty and how would I make an Interactable GUI that toggles certain modules on the overlay

    • @flextradesteam
      @flextradesteam 10 місяців тому

      @@Mediacy1 Bro, u find solution? Sorry it was 1 y ago, but i have same problem. :(

    • @Mediacy1
      @Mediacy1 9 місяців тому

      @@flextradesteam Go and watch @asver8362 tutortial its more updated and works with a Gui

  • @BaldPotatoHead
    @BaldPotatoHead 4 місяці тому +1

    14:09 Line 23. "WNDCLASSEXW" is not green but on line 24 is green. Help please?

  • @A_bkheet
    @A_bkheet Рік тому

    Iwas searching about content like you but I can't find like yoy ❤🎉🎉🎉

  • @Valgar1437
    @Valgar1437 2 роки тому +3

    how cani add this overlay to a mod menu that i did following your external imgui tutorial?

    • @flextradesteam
      @flextradesteam 10 місяців тому

      Bro, u find solution? Sorry it was 1 y ago, but i have same problem. :(

    • @VortexServicesX
      @VortexServicesX Місяць тому

      @@flextradesteam you remove WS_EX_TRANSPARENT and only keep WS_EX_LAYERED and WS_EX_TOPMOST then replace the setlayeredwindow with: SetLayeredWindowAttributes(window, RGB(0, 0, 0), 255, LWA_COLORKEY); it fixed for me and i can interact with the imgui within the render overlay

  • @AnonLeska
    @AnonLeska 11 місяців тому

    can you please link maybe a copy and paste for the get system metrics part? i would like to have other resolutions supported! pls 16:22 for refresh rate at 19:42 can i have it also detect what refresh rate you currently have?

    • @presli481_
      @presli481_ 6 місяців тому

      for anybody reading late:
      GetSystemMetrics(SM_CXSCREEN) = screen width
      GetSystemMetrics(SM_CYSCREEN) = screen height
      Code to get the refresh rate:
      DEVMODE devMode;
      ZeroMemory(&devMode, sizeof(devMode));
      devMode.dmSize = sizeof(devMode);
      if (EnumDisplaySettings(NULL, ENUM_CURRENT_SETTINGS, &devMode)) {
      std::cout

  • @aow6813
    @aow6813 2 роки тому

    welcome back

    • @cazz
      @cazz  2 роки тому

      😘

  • @solbee77
    @solbee77 5 місяців тому

    Is there anyt chance i could screen share with you and you tell me what i did wrong because right when you set swap chain SD i start getting errors cause it doesnt recognize sd

  • @Wootzy69
    @Wootzy69 Рік тому +1

    can i use the esp from the internal and use it in the external

  • @zidlajzcz
    @zidlajzcz 8 місяців тому

    Hey, when i try to add a menu with ImGui, I am unable to click on it, do you know how to fix it? or do i need to create another window?

  • @KarumiOwner
    @KarumiOwner 15 днів тому

    Severity Code Description Project File Line Suppression State Details
    Error C1075 '{': no matching token found esp1 C:\Users\Riley\source
    epos\esp1\esp1\src\main.cpp 26 how do i fix?

  • @hanijamal1444
    @hanijamal1444 Рік тому

    Goat channel

  • @zdc2009
    @zdc2009 2 роки тому

    Why I have black theme behind the red circle? I cant find any answers for that... could you help me with it?

  • @JakeTheDevv
    @JakeTheDevv Рік тому +1

    So if I'm making this for a x64 bit game would I need to include the imgui win32 header?

    • @cazz
      @cazz  Рік тому +4

      Yes. "Win32" is the name of the Windows API for 32-bit and 64-bit applications. "Win32" is just the name. When windows used to be only 32-bit, they called it Win32, but when Windows became 64-bit they did not change the name.

  • @mighty4853
    @mighty4853 Рік тому +3

    this is so depressing, how do you know what comes before what, do you know this by heart ? or is there some logic behind all that, because I don't understand it, it's really complicated to really focus and follow along, because I feel like there are infinite possibilites and infinites things to know, i'm lost, help

    • @carlosnnn6024
      @carlosnnn6024 5 місяців тому +1

      @@mighty4853 this topic uses a lot of different technologies to work and mixes a lot of things, process memory, Windows API, Window management, driver dev...so its normal to get lost at the start, get the "Big things" and start digging on them, when i was lost with process injection something that helped me a lot was to know the basic idea behind it "open process, search/read/write memory of the process" simple, so i go for the basic example , and then the other techniques were just variants. At the end if you just know the concept of how to do something and go to the documentation you can find the process to follow

  • @komaoff4240
    @komaoff4240 2 роки тому +2

    Hey Cazz ! Hum, why when i try to launch the program, nothing appears on the screen ? Even if i copy-pasta your code :/

  • @agentamme
    @agentamme Рік тому

    is it possible to make it so mouse movement can go through the window i would really appricate if anyone answerd

  • @Saffier.b
    @Saffier.b 2 роки тому +1

    Can you pls make a vid of the esp because im new and dont know how to do all that on my own

  • @budgetarms
    @budgetarms 2 роки тому

    You have a while(running) and in that while you have an if statement that breaks out of that loop is running is false?
    How does that make sense, it would break out anyway.

  • @Mierzw4i
    @Mierzw4i Рік тому

    I dont know what i done wrong but i have everything ok but the wh doesnt work can someome help me?

  • @ypisexernasdsdsdsd
    @ypisexernasdsdsdsd 11 місяців тому

    how do you get the thang

  • @gridosbroke961
    @gridosbroke961 Рік тому

    Why cant i see the red dot when i run the program

  • @ionion348
    @ionion348 Рік тому

    Why is that when i try to run the window it doesnt and it says it has an exception on line 111 swap_chain->GetBuffer(0U, IID_PPV_ARGS(&back_buffer)); X
    X is the exception
    I did everything correctly and builded it a couple times

    • @weabooxsu9386
      @weabooxsu9386 Рік тому

      did you find fix for it?

    • @Heroicfv
      @Heroicfv 6 місяців тому

      I know this was a year ago but did you fix it

  • @spinbot09
    @spinbot09 Рік тому

    How can i do this with the multibyte character set?

  • @sok_jablkowy1
    @sok_jablkowy1 3 місяці тому

    cazz, would this work in some way with python?

  • @TreznTM
    @TreznTM 2 роки тому +2

    Awesome video. Quick question, is glfw there any key difference between doing this vs using glfw to do this?

    • @cazz
      @cazz  2 роки тому +1

      I think glfw is cross-platform so it might be better haha :p

  • @Takt_
    @Takt_ Рік тому

    how do i put the long equals symbol between ''if (message (the symbol) WM_Destroy)''

    • @HiImKyle
      @HiImKyle Рік тому

      It's just 2 equals signs?

  • @carnage464
    @carnage464 3 місяці тому

    Please a make part two i had fun trying to do this but i dont know how to finish

  • @ningu1036
    @ningu1036 2 роки тому +13

    could you make a video on kernel drivers like explain them a bit ?

    • @tenhgoenze1007
      @tenhgoenze1007 2 роки тому +1

      ye great idea, i would like to know somethin about them aswell

    • @cazz
      @cazz  2 роки тому +8

      Absolutely! Coming sometime in the future :)

    • @tenhgoenze1007
      @tenhgoenze1007 2 роки тому

      ​@@cazz i just gotta ask, are u able to bypass anticheats?

    • @xillian
      @xillian 2 роки тому +1

      Woud love to see something like this!

    • @bgsand56
      @bgsand56 2 роки тому

      @@tenhgoenze1007 if ur in his discord u can see loads of ppl are doing it so i guess he can

  • @volcano2647
    @volcano2647 Рік тому

    can you make a second part to the esp i am new and dont understand how to do the last part without a tutorial

  • @wuspoppin6564
    @wuspoppin6564 2 роки тому +1

    I just got recommended your game hacking video and I gotta say I'm hooked to the channel haha

  • @AinzOoalGown-xy1wz
    @AinzOoalGown-xy1wz Рік тому

    This can wrok for any game?

  • @budgetarms
    @budgetarms 2 роки тому +1

    You manually make the dotproduct of 2 vectors, do you only do that because you only use it once?
    Instead of making a function for it.

  • @stepabroz5132
    @stepabroz5132 2 роки тому

    Soooooooooo good video, thanks

  • @ezmario4111
    @ezmario4111 Рік тому +1

    how do you update the offsets?

  • @Photon852
    @Photon852 2 роки тому +1

    can u make inventory changer for csgo?

  • @MOHITKxLIVE
    @MOHITKxLIVE 4 місяці тому

    Can I use this on valorant

  • @trix2894
    @trix2894 2 роки тому +1

    can u make another vid or tell me how to get krnl driver and stuff like that?

    • @cazz
      @cazz  2 роки тому

      Absolutely

    • @trix2894
      @trix2894 2 роки тому

      @@cazz okay thx

  • @vaioskelem
    @vaioskelem Рік тому

    is it possible to run this on mac?

  • @aidan7229
    @aidan7229 Рік тому

    Would this be safe for the game rust with EAC?

  • @spenc2k
    @spenc2k 2 роки тому +1

    Does this also work for games like rainbow six siege?

    • @cazz
      @cazz  2 роки тому +1

      Yes. It would draw over, but you'd still need a driver to read player positions

  • @Qwerd-vu7fz
    @Qwerd-vu7fz Рік тому

    Who have problem that program compiling without error, but nothing shows change if (!back_buffer) to if (back_buffer)

    • @By_B0SS
      @By_B0SS 5 місяців тому

      no work ((

  • @zinouback7630
    @zinouback7630 2 роки тому

    Is that lowing trust factor cuz the radar and trigger lowed the trust factor

    • @cazz
      @cazz  2 роки тому +1

      Theoretically if you made a kernel driver and ONLY used it to read game memory (never write) you could make an ESP that literally never touches the game and you’d never get banned as long as VAC stays in the usermode.

  • @MinnyS420
    @MinnyS420 Рік тому

    I have a Q
    I just started with programming
    Can we make a script swapi api for offsets and every time when there is a new update to check to pull the info and just set the new one ????

  • @extasyy5427
    @extasyy5427 2 роки тому +1

    CAZZZZ!!!!

  • @ImMagicDesigns
    @ImMagicDesigns Рік тому

    will it work even on Fullscreen mode ????

  • @BigBoss-wb4ux
    @BigBoss-wb4ux 3 місяці тому

    How to compile a android kernel driver with kernel

  • @sheyteo7192
    @sheyteo7192 2 роки тому

    I just get a black screen with a red dot, i cant see through, but i have the exact same code. I checked multiple times for any typing errors. I also tried decreasing the opacity in SetLayerWindowAttributes but this just decreases the opacity of everything. Any Ideas how to fix this?

    • @Corgansm
      @Corgansm 2 роки тому

      I have the same problem lmk if you found a solution

    • @sheyteo7192
      @sheyteo7192 2 роки тому

      @@Corgansm Yeah i tried other ways and i came to this solution: "HWND const window = CreateWindowExW(WS_EX_TOPMOST | WS_EX_LAYERED,
      wc.lpszClassName, L"Overlay",
      NULL,
      CW_USEDEFAULT, CW_USEDEFAULT,
      width, height,
      nullptr, nullptr, hInstance, nullptr);
      SetLayeredWindowAttributes(window, RGB(0, 0, 0), 0xFF, LWA_COLORKEY);
      SetWindowLong(window, GWL_STYLE,WS_EX_TOPMOST | WS_EX_LAYERED);"
      i changed the d3d things a little a aswell let me know if it works. If not i can send u the project

    • @benniking3333
      @benniking3333 2 роки тому

      @@sheyteo7192 const HWND window = CreateWindowExW(
      WS_EX_TOPMOST | WS_EX_TRANSPARENT | WS_EX_LAYERED,

    • @benniking3333
      @benniking3333 2 роки тому

      use WS_EX_TRANSPARENT

  • @h3reux665
    @h3reux665 Рік тому +2

    ty for this video ! It's very interesting but can you give more details when you code it would help a lot !

  • @BrycenIsTheGoat
    @BrycenIsTheGoat Рік тому +2

    Darnit, I just spent like 2 hours coding and learning what the stuff does and I didnt even get to use the esp

  • @nuoz3326
    @nuoz3326 2 роки тому +4

    Good video easy to follow, I just wish u could show the end aswell cuz im new and I made all u did but not the final product so im stuck with a half esp :/

  • @rtsirphysics7281
    @rtsirphysics7281 Рік тому

    Can it works in android...

  • @abhay29
    @abhay29 Рік тому +1

    Watching this video because I am making a college project 🤪

  • @hz10022
    @hz10022 2 роки тому

    Wait can I use this for other games like valorant?

    • @scurity8698
      @scurity8698 2 роки тому

      vac is usermode so you can just write your own kernel driver and bypass it with an external program. Vanguard is kernel mode so it is significantly more difficult to fool.

  • @deivid561
    @deivid561 2 роки тому +1

    cool video bro

  • @monkeyplays6718
    @monkeyplays6718 Рік тому

    will it work for cs2?

  • @Petr_Olegovich446
    @Petr_Olegovich446 Рік тому +1

    cazz, please help, ur discrod server cant help me, becuz there dont adequate peoples, when I asked thems about help. I dont know how to fix this Severity Code Description Project File String Suppression Status
    Error C 1075 "{": the wrong sexy_esp token was not found C:\Users\Administrator\Desktop\sexy_esp\src\main.cpp 24, I also don't have a red circle like you, I don't understand c++, I studied c#, I followed your steps very strictly.

    • @theprogaming3042
      @theprogaming3042 Рік тому

      The error message you're seeing typically occurs when there is a syntax error in your code. It seems that there is an issue with the placement or usage of the "{" token in your code.
      Please double-check the line mentioned in the error message, which is line 24 in your main.cpp file. Ensure that you have correctly opened and closed all curly braces in the surrounding code. It's possible that you may have missed a closing brace or placed an opening brace in the wrong location.
      If you're unable to identify the specific issue, please provide the code snippet around line 24 of your main.cpp file so that I can assist you further.

  • @43alpha
    @43alpha Рік тому

    Would this work on val? I'm not sure cause val is kernel level

    • @cazz
      @cazz  Рік тому +1

      This would work if you have a kernel driver that can access Valorant’s memory. This is just an overlay tutorial. How you access memory is up to you!

  • @dragonsoul1465
    @dragonsoul1465 Рік тому +1

    hello nice explanation. can you create and explain how a hardware spoofer works?

  • @Not_Xolex
    @Not_Xolex Рік тому

    Mine doesn't want to open

  • @1ceblock
    @1ceblock 2 роки тому +6

    i wanna make external playeresp for escape from tarkov which uses battleye anticheat. Will this tutorial work? Also if you could make a video explaining kernel drivers and root level anti cheats that would be very helpful. THX & u deserve more subs !!

    • @cazz
      @cazz  2 роки тому +6

      Yes, this overlay will work if you have a driver to use it with. Ive used this exact method in my own private cheats.
      And yes, I will do a video about drivers quite soon. Cheers!

    • @1ceblock
      @1ceblock 2 роки тому

      @@cazz THX

  • @TegridyMadeGames
    @TegridyMadeGames Рік тому

    Does it avoid detection due to the games anti-cheat being not great as other games or is it because its just more unknown, like a self made virus?

  • @nyvyme
    @nyvyme 2 роки тому +2

    woah, new video
    (not chams p2... again...)

  • @Radeon_Software
    @Radeon_Software 2 роки тому +1

    I love you cazz 🎉

    • @cazz
      @cazz  2 роки тому +1

      No u

    • @Radeon_Software
      @Radeon_Software 2 роки тому

      @@cazz it’s me unknown the patreon 🥰

  • @zeloyello
    @zeloyello 2 роки тому +1

    when explaining the esp u cut off line 380 and line 384

  • @Not_Xolex
    @Not_Xolex Рік тому

    Ok but what if you using x64? Why do u add win32

    • @cazz
      @cazz  Рік тому +2

      Win32 is just the name of the Windows API. Win32 supports x86 and x64.

    • @Not_Xolex
      @Not_Xolex Рік тому

      @@cazz ok thx

  • @baro1869
    @baro1869 2 роки тому

    i reccomend to replace DWORD with uintptr_t cuz dword works only for 32-bit games and when u will go higher (64-bit game) u will be often go wrong, and ofc uintptr_t works for both

    • @CodecNomad
      @CodecNomad Рік тому

      or just use unsigned int lol

    • @KAMIOUKA
      @KAMIOUKA Рік тому +1

      @@CodecNomad ? random wrong comment lol

  • @elysiumyt4334
    @elysiumyt4334 2 роки тому +10

    This might be good to learn from or for testing purposes. But you do no want to use this in any modern game. You make use of the topmost flag which is a instant red flag for all modern anti cheats.

    • @riley1426
      @riley1426 Рік тому +1

      what would you change

    • @dire284
      @dire284 Рік тому

      lol I've been using layered topmost on BE for ~3 months and no ban. Definitely is a flag tho so be wary.

  • @rocoplays2
    @rocoplays2 2 роки тому

    is it stream proof?

    • @cazz
      @cazz  2 роки тому

      If you game capture CSGO, yes

  • @melon-vk6zd
    @melon-vk6zd Рік тому

    It would be great to learn how hwid spoof works

  • @Prriyaanshu
    @Prriyaanshu Рік тому

    Does This work in Pubg mobile?

  • @chillinte
    @chillinte 2 роки тому +2

    we love cazz

    • @dieforelle5565
      @dieforelle5565 2 роки тому +1

      you love him for false info and absolute basic code thats cringe

    • @dieforelle5565
      @dieforelle5565 2 роки тому

      @@bindkey I program my own cheats and I have my own bypass so I didn’t searched here for help I just wondered where the script kiddie hotspot is

    • @dieforelle5565
      @dieforelle5565 2 роки тому

      @@bindkey Its funny because Videos like that damage the learning progress of new programmers

    • @Valgar1437
      @Valgar1437 2 роки тому

      @@dieforelle5565 you got banned at the discord and now you are mad lol

    • @dieforelle5565
      @dieforelle5565 2 роки тому

      @@Valgar1437 i didnt got banned i left by myself cuz its a scriptkiddie paradise where just toxic wannabes are

  • @brutal7304
    @brutal7304 2 роки тому

    I see you switched from camelCase to snake_case and changed the curly brackets to the same line 🤔

    • @cazz
      @cazz  2 роки тому +4

      Yeah, I went through a style crisis. I’ve come to realize that style depends on the project especially because C and C++ are so unrestrained. What do you prefer?

    • @brutal7304
      @brutal7304 2 роки тому

      @@cazz well I prefer PascalCase

  • @winapi
    @winapi 2 роки тому

    Thank you cazz for Teaching us new Kids some pKnowledge

  • @dinari769
    @dinari769 Рік тому

    cs2?

  • @thischannelwhack7407
    @thischannelwhack7407 2 роки тому

    2 hey could you make a tutorial to make trigger bot for gears 5

  • @learnwithmrmachine7955
    @learnwithmrmachine7955 2 роки тому

    Could you help us , make one for pubg mobile emulator ,, thank you

  • @ester7300
    @ester7300 2 роки тому +1

    can i get banned if i use this without -insecure

    • @Totally_Not_A_Haxxer
      @Totally_Not_A_Haxxer 2 роки тому

      why would you need a insecure tag? your not injecting the code into the game, it is external not internal.

    • @cazz
      @cazz  2 роки тому +2

      can you? yes. Will you? Probably not.

  • @BiteYt69
    @BiteYt69 2 роки тому

    Can u make something about ImGui android as mod menus, I made something with this, but its still kinda buggy, needed help with this as my ideas got saturated at this point

    • @BluescreenDev
      @BluescreenDev 2 роки тому +3

      Android lmao, I swear you're from india

  • @GhostService31
    @GhostService31 2 роки тому

    can you show how to make a external cheat for Apex Legends Plssss

  • @MORBA622
    @MORBA622 2 роки тому

    could you make video including aimbot and other features you maked external video 9 months ago that would be nice of you to make that

  • @arashnyb7318
    @arashnyb7318 2 роки тому

    nice vid
    i have been making a external p2c but I don't know how to disable run as administrator after building the project
    Can you help me by any chance?

    • @horballi2847
      @horballi2847 2 роки тому

      if you want to make an external you need to have administrator rights, you modifying another process's memory

    • @frederikbahnsen348
      @frederikbahnsen348 Рік тому +1

      you probably shouldnt run a P2C service then lol

  • @uSepyTweak
    @uSepyTweak 2 роки тому

    how about esp for geforce now or any other cloud gaming services?

    • @cazz
      @cazz  2 роки тому +2

      Wow, that’s an interesting question.
      Because you don’t have access to the game running on your computer (it’s being streamed) the ENTIRE game is basically sever-sided. This means that you can’t access any memory.
      I think, to make an aimbot for those games you’d use some pixel/color aimbot to detect (rather poorly) the enemies and then you can use the Windows API to move your mouse.
      I don’t think an ESP is possible but I stand to be corrected. This is not my area of expertise.

    • @uSepyTweak
      @uSepyTweak 2 роки тому

      ​@@cazz Thank you for the reply!
      Well, I've been searching for a while, and I learned some things.
      About the ESP, yes, it is not possible because if you want to download it, you have to get access to the streaming machine, which is basically impossible, there are some videos of how to download things on the computer of Geforce Now or have the access but it is everything outdated. Trying to have access to the computer I believe that is a waste of time.
      The aimbot is also a waste of time (in my point of view ) because you'll spend a lot of time picking pixel by pixel of characters and it will still be very buggy.
      Again, thanks for answering and I hope I've clarified something for you.🙂

    • @Twin1
      @Twin1 2 роки тому

      @@cazz My friend knows this guy named Android and he got it working. he got to exploit the computers to download a file and it worked

  • @Lornsen420
    @Lornsen420 2 роки тому

    Does it work in fullscreen bro?

  • @ezclapz650
    @ezclapz650 Рік тому

    I got discord?

  • @VENOM-kb8pu
    @VENOM-kb8pu Рік тому +1

    Everyone. If you tried to copy the esp and it didn't work not displaying anything, and if you actually debugged and tried some angles and sometiems a box will show. That is because of the w2s function, atleast what happened to me. You need to be very careful in copying this

    • @andersongoncalves4574
      @andersongoncalves4574 Рік тому

      Man I have the same problem and I couldn't find the cause even watching the video countless times, what did you do in this case?

  • @gaok1
    @gaok1 Рік тому

    can u make a video talking about anti cheats and bypassing?

  • @avalonnn
    @avalonnn 2 роки тому

    thxx

  • @火IMMORTAL火
    @火IMMORTAL火 2 роки тому +2

    really good video gg

  • @ok-pb4zi
    @ok-pb4zi 2 роки тому

    can u make a vid abt keybind system for imgui ?

  • @clapbxt
    @clapbxt 11 місяців тому +1

    Lol i came just to make my own crosshair app but hacks are cool too lol

  • @veqper588
    @veqper588 2 роки тому

    its safe to use on FACEIT CSGO ANTICHEAT ? its detected or no tell me !

  • @KoobiR8
    @KoobiR8 2 роки тому

    this is great video thanks, but ima ask you can you make video showing how you can hook the cheat into any app that have overlay, for example Discord and than from the discord to the game, i hope you understand what i mean, for example my friend have external cheat, the steps to run the cheat you most have steam on than run his loader than his loader will hook into steam than you open the game and boom the cheat running with no CMD open, but if you close steam cheat will close to

  • @AlizerLeHaxor
    @AlizerLeHaxor 6 місяців тому

    gaming