Skip to content
MPGHThe Dark Arts
/
RegisterLog in
Forum
Community
What's NewLatest posts across the boardTrendingHottest threads right nowSubscribedThreads you follow
Discussion
GeneralIntroductionsEntertainmentDebate FortFlaming & Rage
Board
News & AnnouncementsMPGH TimesSuggestions & HelpGiveaways
More Sections
Art & Graphic DesignProgrammingHackingCryptocurrency
Hacks & Cheats
Games
ValorantCS2 / CS:GOCall of Duty / WarzoneFortniteApex LegendsEscape From Tarkov
+14 moreLeague of LegendsGTA VMinecraftRustROTMGBattlefieldTroveBattleOnCombat ArmsCrossFireBlackshotRuneScapeDayZDead by Daylight
Resources
Game Hacking TutorialsReverse EngineeringGeneral Game HackingAnti-CheatConsole Game Hacking
Tools
Game Hacking ToolsTrainers & CheatsHack/Release NewsNew
Submit a release →Share your cheat, tool, or config with the community.
AINEW
AI Tools
General & DiscussionPrompt EngineeringLLM JailbreaksHotAI Agents & AutomationLocal / Open Models
AI × Gaming
AI Aimbots & VisionML Anti-CheatGame Bots & Automation
Create
AI Coding / Vibe CodingAI Art & MediaAI Voice & TTS
The AI frontier →Where game hacking meets modern machine learning. Jump in.
Marketplace
Buy & Sell
SellingBuyingTradingUser Services
Trust & Safety
Middleman LoungeMarketplace TalkVouch Copy Profiles
Money
Cryptocurrency TalkCurrency ExchangeWork & Job Offers
Start selling →List accounts, services, and goods. Use the middleman to trade safe.
MPGH The Dark Arts

A community for offensive security research, reverse engineering, and AI.

Community

ForumMarketplaceSearch

Account

RegisterLog in

Legal

Privacy PolicyForum RulesHelp & FAQ
© 2026 MPGH · All rights reserved.Built by the community, for the community. For educational purposes onlyContent is shared for security research and education — we don't condone illegal use. You're responsible for complying with applicable laws. Use at your own risk.
Home › Forum › Programming › Visual Basic Programming › vb AImbot! No tut only source code!

vb AImbot! No tut only source code!

Posts 1–7 of 7 · Page 1 of 1
reversflux
reversflux
vb AImbot! No tut only source code!
I am not sure who made it, but i take no credz at all!



Just a code i maybe will put a tut:

' MODULE...
' =========
Option Explicit

Public Declare Function FindWindow Lib "user32" Alias "FindWindowA" (ByVal lpClassName As String, ByVal lpWindowName As String) As Long
Public Declare Function GetForegroundWindow Lib "user32" () As Long
Public Declare Function GetDC Lib "user32" (ByVal hwnd As Long) As Long
Public Declare Function ReleaseDC Lib "user32" (ByVal hwnd As Long, ByVal hdc As Long) As Long
Public Declare Sub mouse_event Lib "user32" (ByVal dwFlags As Long, ByVal dx As Long, ByVal dy As Long, ByVal cButtons As Long, ByVal dwExtraInfo As Long)
Public Declare Function GetCursorPos Lib "user32" (lpPoint As Point) As Long
Public Declare Function GetPixel Lib "gdi32" (ByVal hdc As Long, ByVal X As Long, ByVal Y As Long) As Long

Public Const MOUSEEVENTF_LEFTDOWN = &H2

Public Type Point
X As Long
Y As Long
End Type:


' FORM...
' =======

Option Explicit

Dim ProcessHandle As Long, ProcessDC As Long

Private Sub Form_Activate()
ProcessHandle = FindWindow(vbNullString, "Window Name Here")
ProcessDC = GetDC(0)
End Sub

Private Sub Form_Unload(Cancel As Integer)
Call ReleaseDC(0, ProcessDC)
End Sub

Private Sub Timer1_Timer()
On Error Resume Next

Dim X As Long, Y As Long, PixelColor As Long
Dim CursorPosition As Point

If (ProcessHandle <> GetForegroundWindow()) Then
Exit Sub
End If

Call GetCursorPos(CursorPosition)

For X = CursorPosition.X - 20 To CursorPosition.X + 20
For Y = CursorPosition.Y - 20 To CursorPosition.Y + 20
PixelColor = GetPixel(ProcessDC, X, Y)

'Replace RGB value for your specified color
If (PixelColor = RGB(255, 255, 255)) Then
Call mouse_event(MOUSEEVENTF_LEFTDOWN, CursorPosition.X, CursorPosition.Y, 0, 0)
Exit Sub
End If
Next Y
Next X
End Sub
#1 · 17y ago
CO
CodeHPro
your cod is wrong see where it says

Public Type Point
X As Long
Y As Long
End Type:

make that

Public Type Point
Dim X As Long
Dim Y As Long
End Type:

i lol this isnt a Aimbot it's a Pixel AimBot just like this one i made yesterday
but this one is a pixel aimbot maker
#2 · edited 17y ago · 17y ago
reversflux
reversflux
Quote Originally Posted by CodeHPro View Post
your cod is wrong see where it says

Public Type Point
X As Long
Y As Long
End Type:

make that

Public Type Point
Dim X As Long
Dim Y As Long
End Type:

i lol this isnt a Aimbot it's a Pixel AimBot just like this one i made yesterday
but this one is a pixel aimbot maker
YouTube - Beta - AimBot Maker v1.0
ohh, What game are you playing in the video? And can you tell me how to work your think lol
#3 · edited 17y ago · 17y ago
CO
CodeHPro
just do what i did in the video find the color of the thing you want it to aim at then make a hotkey and Bam there you go
#4 · 17y ago
reversflux
reversflux
Quote Originally Posted by CodeHPro View Post
just do what i did in the video find the color of the thing you want it to aim at then make a hotkey and Bam there you go
What game is that? And how did you copy the game and paste in paint

Edit found out works good!
#5 · edited 17y ago · 17y ago
CO
CodeHPro
Quote Originally Posted by reversflux View Post
What game is that? And how did you copy the game and paste in paint

Edit found out works good!
ty glad to know it works for you
#6 · 17y ago
FY
fyver
nice one:d
#7 · 17y ago
Posts 1–7 of 7 · Page 1 of 1

Post a Reply

Similar Threads

  • [TUT] arnold's hack v1.1 vb6 source codeBy arnold in WarRock - International Hacks
    6Last post 18y ago
  • Exteel Aimbot Script Source CodeBy Trip-FX in General Game Hacking
    15Last post 17y ago
  • Any c# tuts, source codes, anything?!?!?!By t7ancients in C++/C Programming
    5Last post 17y ago
  • [Release] WarHax DLL Source CodeBy OneWhoSighs in WarRock - International Hacks
    20Last post 18y ago
  • HALO 2 (XBOX) Source CodeBy mirelesmichael in General Game Hacking
    12Last post 20y ago

Tags for this Thread

#aimbot#code#source#tut