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 › MultiPlayer Game Hacks & Cheats › CrossFire Hacks & Cheats › CrossFire Hack Coding / Programming / Source Code › VB.net Color Aimbot

VB.net Color Aimbot

Posts 1–10 of 10 · Page 1 of 1
LU
lucasheer715
VB.net Color Aimbot
I was researching color/pixel aim bots in visual basic, and i put together a quick aim bot of what i found. This is currently working for crossfire, but it is slow and i do not have the correct color for head listed in code. (I will have it shown in code snippet)
If you have a 32 bit system then u can use (getasynvkeystate)
Code:
Private Declare Function GetAsyncKeyState Lib "user32" (ByVal vKey As Long) As Integer
(This code is undetectable.....)


Requirements (everything is done in form_load)
2 timers
2 buttons

Timer1 Code :
Code:
Dim screensize As Size = New Size(My.Computer.Screen.Bounds.Width, My.Computer.Screen.Bounds.Height)
        Dim screenshot As New Bitmap(My.Computer.Screen.Bounds.Width, My.Computer.Screen.Bounds.Height)
        Dim g As System.Drawing.Graphics = System.Drawing.Graphics.FromImage(screenshot)
        g.CopyFromScreen(New Point(0, 0), New Point(0, 0), screensize)
        Dim pointx As Integer = 1
        Dim pointy As Integer = 1
        Dim looking As Boolean = True
        Try
            While looking = True
                Dim atpoint As Color = screenshot.GetPixel(pointx, pointy)
                Dim red As Color = Color.FromArgb(255, 217, 59, 73) 'does not work with crossfire
                If atpoint = red Then
                    Cursor.Position = New Point(pointx, pointy)
                    looking = False
                    pointx = 1
                    pointy = 1
                End If

                pointy = pointy + 1
                If pointy = My.Computer.Screen.Bounds.Height Then
                    pointy = 0
                    pointx = pointx + 1
                End If

            End While
        Catch ex As Exception
        End Try
Timer2 Code:
Code:
Dim screensize As Size = New Size(My.Computer.Screen.Bounds.Width, My.Computer.Screen.Bounds.Height)
        Dim screenshot As New Bitmap(My.Computer.Screen.Bounds.Width, My.Computer.Screen.Bounds.Height)
        Dim g As System.Drawing.Graphics = System.Drawing.Graphics.FromImage(screenshot)
        g.CopyFromScreen(New Point(0, 0), New Point(0, 0), screensize)
        Dim pointx As Integer = 1
        Dim pointy As Integer = 1
        Dim looking As Boolean = True
        Try
            While looking = True
                Dim atpoint As Color = screenshot.GetPixel(pointx, pointy)
                Dim red As Color = Color.FromArgb(255, 217, 59, 73) 'does not work with crossfire
                If atpoint = red Then
                    Cursor.Position = New Point(pointx, pointy)
                    looking = False
                    pointx = 1
                    pointy = 1
                End If

                pointy = pointy + 1
                If pointy = My.Computer.Screen.Bounds.Height Then
                    pointy = 0
                    pointx = pointx + 1
                End If

            End While
        Catch ex As Exception
        End Try
Button1 Code:
Code:
 Timer1.Start()
        Timer2.Start()
Button2 Code:
Code:
Timer1.Stop()
        Timer2.Stop()
Form Code:
Code:
 Timer1.Interval = 1
        Timer2.Interval = 1
        Timer1.Enabled = False
        Timer2.Enabled = False
        Button1.Text = "on"
        Button2.Text = "off"

This is done in Visual basic 2010 64 bit, if this doesn't work for u please ask questions.

BTW: I made duel timers which makes it faster but only do 1 if your computer is slow.
#1 · edited 13y ago · 13y ago
6I
6ixth
Nice tutorial!
#2 · 13y ago
LU
lucasheer715
thanks, i had help from a friend with the code a lil bit
#3 · edited 13y ago · 13y ago
LU
lucasheer715
You can use this image for aimbot color
#4 · edited 13y ago · 13y ago
CO
CoderCf
Can you sey me the Pixel ?
#5 · 13y ago
S]
S]n!ck-_*
nice tut thanks
#6 · 13y ago
LU
lucasheer715
Quote Originally Posted by CoderCf View Post
Can you sey me the Pixel ?
no sorry, i dont have then pixel, but im working on it cause i can only find red, green, and blue. (if i find it i will give code)
#7 · 13y ago
CO
CoderCf
OK Thx
#8 · 13y ago
nwouh
nwouh
can use to other games
#9 · 13y ago
LU
lucasheer715
Quote Originally Posted by nwouh View Post
can use to other games
yep, i use rgb color finder, works great
#10 · 13y ago
Posts 1–10 of 10 · Page 1 of 1

Post a Reply

Similar Threads

  • [SEARCHING] Color Aimbot v3By stfustfu in WarRock - International Hacks
    4Last post 20y ago
  • [Trade] Color Aimbot + Wallhack 4 WR Account! Lv6+By Titanium Gold in Trade Accounts/Keys/Items
    15Last post 19y ago
  • PLZ Make Me A Tutorial For Use Color aimbot (video)By Trickmadd in Programming Tutorials
    2Last post 18y ago
  • Color AimBotBy Riseing in Combat Arms Hacks & Cheats
    22Last post 17y ago
  • color aimbotBy cjg333 in WarRock - International Hacks
    20Last post 19y ago

Tags for this Thread

None