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 › Fortnite Hacks & Cheats › --SOURCE: AutoHotKey Aimbot, Pixel Detection, Updated

Post--SOURCE: AutoHotKey Aimbot, Pixel Detection, Updated

Posts 1–15 of 133 · Page 1 of 9
…
WR
WRsgdSFzx
--SOURCE: AutoHotKey Aimbot, Pixel Detection, Updated
Warning: AHK is detectable my mouse movement, need anti cheat or something to mask your mouse movement being suspicious. Not patched however.


My last thread got so many comments and views so I just decided to come out with the full release of the one I use which is actually nice considering its an AutoHotKey.

So basically, what this will do is it will scan your screen for a certain color, I compiled in some colors that people have sent me and have over 15 total skins added, and will be adding more, you can add them yourself but I don't want to get into that.

Features added since last post-
-15 more skins
-Higher color variation(stronger aimbot)
-Faster mouse movements.
-Polished(removed errors)

How to use:
1)Download AHK
2)Copy/Paste this into a notepad
3)Save as fortnitescript.ahk
4)Right click that file and hit compile
5)Run the compiled file
--Left mouse button activates it. So no hotkey its just when you aim in.

SOURE:
Code:
init:
#NoEnv
#SingleInstance, Force
#Persistent
#InstallKeybdHook
#UseHook
#KeyHistory, 0
#HotKeyInterval 1
#MaxHotkeysPerInterval 127
version = 1.1
traytip, Compiled-Aimbot-.mpgh.net%version%, Running in background!, 5, 1
Menu, tray, NoStandard
Menu, tray, Tip, Sharpshooter %version%
Menu, tray, Add, Sharpshooter %version%, return
Menu, tray, Add
Menu, tray, Add, Help, info
Menu, tray, Add, Exit, exit
SetKeyDelay,-1, 1
SetControlDelay, -1
SetMouseDelay, -1
SetWinDelay,-1
SendMode, InputThenPlay
SetBatchLines,-1
ListLines, Off
CoordMode, Pixel, Screen, RGB
CoordMode, Mouse, Screen
PID := DllCall("GetCurrentProcessId")
Process, Priority, %PID%, High
 
EMCol := 0xD82A22,0xDD5879,0x322F2D,0x0DF317,0xABB3C0,0xD82A22,0x240E11,0x955647,0x5D024F,0x1599A5,0x611 45C,0xEEE679,0xD0723E,0xEAE6DB,0x915612,0x424649,0x7F5103,0x54697E,0xd68E44,0xB80A0V,0xD0B56A,0x813D 2B,0xaC351A,0xE9D795,0xB5AF9B,0xE94F58,0X612b37,0x2ADd31,0x612B37
ColVn := 65
AntiShakeX := (A_ScreenHeight // 160)
AntiShakeY := (A_ScreenHeight // 128)
ZeroX := (A_ScreenWidth // 2)
ZeroY := (A_ScreenHeight // 2)
CFovX := (A_ScreenWidth // 8)
CFovY := (A_ScreenHeight // 64)
ScanL := ZeroX - CFovX
ScanT := ZeroY
ScanR := ZeroX + CFovX
ScanB := ZeroY + CFovY
NearAimScanL := ZeroX - AntiShakeX
NearAimScanT := ZeroY - AntiShakeY
NearAimScanR := ZeroX + AntiShakeX
NearAimScanB := ZeroY + AntiShakeY
 
Loop, {
    KeyWait, LButton, D
    PixelSearch, AimPixelX, AimPixelY, NearAimScanL, NearAimScanT, NearAimScanR, NearAimScanB, EMCol, ColVn, Fast RGB
    if (!ErrorLevel=0) {
        loop, 10 {
            PixelSearch, AimPixelX, AimPixelY, ScanL, ScanT, ScanR, ScanB, EMCol, ColVn, Fast RGB
            AimX := AimPixelX - ZeroX
            AimY := AimPixelY - ZeroY
            DirX := -1
            DirY := -1
            If ( AimX > 0 ) {
                DirX := 1
            }
            If ( AimY > 0 ) {
                DirY := 1
            }
            AimOffsetX := AimX * DirX
            AimOffsetY := AimY * DirY
            MoveX := Floor(( AimOffsetX ** ( 1 / 2 ))) * DirX
            MoveY := Floor(( AimOffsetY ** ( 1 / 2 ))) * DirY
            DllCall("mouse_event", uint, 1, int, MoveX * 1.5, int, MoveY, uint, 0, int, 0)
        }
    }
}
 
Pause:: pause
return:
goto, init
 
info:
msgbox, 0, %version%, Made by CelikShadow edited by WRsgdSFzx @ slut.io`nFortnite must be running in borderless windowed mode.`nPress pause key to pause this program.`nLeft click automatically aims down target near the center of the screen.`nRecommended for near distance(~15m) and full-auto weapons.
return
 
exit:
exitapp
REPLY WITH ERRORS, I WILL FIX THEM.

Enjoy.
#1 · edited 7y ago · 7y ago
xXGhostXx1230
xXGhostXx1230
Not really good.
I aim, and when I start shooting, the camera shakes to left and right
#2 · 7y ago
FL
Flamingomingooooo
A little error
Whenever I click somewhere on my desktop or whatever it moves my mouse to the left. I just tried it, and it's not perfect, it doesn't aim exactly where the head is but I mean... it does the job, and battleeye can't detect it. (I'm not a coder expert, this is just my opinion as a non-coder person xD)
#3 · edited 7y ago · 7y ago
HY
Hyverks123
Is there any good anti cheat systems so I don't get banned?
Is there any good anti cheat systems so I don't get banned? I was wondering this because I have a lot of skins and stuff on my account and I don't want to get banned.
#4 · 7y ago
Butter
Butter
Quote Originally Posted by Hyverks123 View Post
Is there any good anti cheat systems so I don't get banned? I was wondering this because I have a lot of skins and stuff on my account and I don't want to get banned.
Probably best to just not cheat
#5 · 7y ago
WR
WRsgdSFzx
Quote Originally Posted by Hyverks123 View Post
Is there any good anti cheat systems so I don't get banned? I was wondering this because I have a lot of skins and stuff on my account and I don't want to get banned.
If you have alot of skins on your account and you don't have anticheat I would either create a new account, or try to create your own anti-cheat because there is no free anti cheat.
#6 · 7y ago
WR
WRsgdSFzx
Quote Originally Posted by xXGhostXx1230 View Post
Not really good.
I aim, and when I start shooting, the camera shakes to left and right
Yeah, trying to make more specific colors, easy fix.
#7 · 7y ago
WA
WangTang
appreciate it
#8 · 7y ago
AD
adine
works but to an extent
the ahkbot works but while trying to aim at an enemy sometimes from which way i am looking at them my crosshair would lock on to buildings nearby, adding more specific colors to skins should fix it i hope you can get it to work.
#9 · 7y ago
SE
SellerOW
not perfect not bad either thank you
#10 · 7y ago
niggo
niggo
Quote Originally Posted by Hyverks123 View Post
Is there any good anti cheat systems so I don't get banned? I was wondering this because I have a lot of skins and stuff on my account and I don't want to get banned.
i wouldnt cheat at all on the machine youre using

chances of you being banned and the hwid being banned too is high
#11 · 7y ago
LO
lolkind88
can someone help me? Normally made an ahk but it just locks down onto the ground and turns around. What am I doing wrong???
#12 · 7y ago
BO
bongio
Quote Originally Posted by WRsgdSFzx View Post
Warning: AHK is detectable my mouse movement, need anti cheat or something to mask your mouse movement being suspicious. Not patched however.


My last thread got so many comments and views so I just decided to come out with the full release of the one I use which is actually nice considering its an AutoHotKey.

So basically, what this will do is it will scan your screen for a certain color, I compiled in some colors that people have sent me and have over 15 total skins added, and will be adding more, you can add them yourself but I don't want to get into that.

Features added since last post-
-15 more skins
-Higher color variation(stronger aimbot)
-Faster mouse movements.
-Polished(removed errors)

How to use:
1)Download AHK
2)Copy/Paste this into a notepad
3)Save as fortnitescript.ahk
4)Right click that file and hit compile
5)Run the compiled file
--Right mouse button activates it. So no hotkey its just when you aim in.

SOURE:
Code:
init:
#NoEnv
#SingleInstance, Force
#Persistent
#InstallKeybdHook
#UseHook
#KeyHistory, 0
#HotKeyInterval 1
#MaxHotkeysPerInterval 127
version = 1.1
traytip, Compiled-Aimbot-.mpgh.net%version%, Running in background!, 5, 1
Menu, tray, NoStandard
Menu, tray, Tip, Sharpshooter %version%
Menu, tray, Add, Sharpshooter %version%, return
Menu, tray, Add
Menu, tray, Add, Help, info
Menu, tray, Add, Exit, exit
SetKeyDelay,-1, 1
SetControlDelay, -1
SetMouseDelay, -1
SetWinDelay,-1
SendMode, InputThenPlay
SetBatchLines,-1
ListLines, Off
CoordMode, Pixel, Screen, RGB
CoordMode, Mouse, Screen
PID := DllCall("GetCurrentProcessId")
Process, Priority, %PID%, High
 
EMCol := 0xD82A22,0xDD5879,0x322F2D,0x0DF317,0xABB3C0,0xD82A22,0x240E11,0x955647,0x5D024F,0x1599A5,0x611 45C,0xEEE679,0xD0723E,0xEAE6DB,0x915612,0x424649,0x7F5103,0x54697E,0xd68E44,0xB80A0V,0xD0B56A,0x813D 2B,0xaC351A,0xE9D795,0xB5AF9B,0xE94F58,0X612b37,0x2ADd31,0x612B37
ColVn := 65
AntiShakeX := (A_ScreenHeight // 160)
AntiShakeY := (A_ScreenHeight // 128)
ZeroX := (A_ScreenWidth // 2)
ZeroY := (A_ScreenHeight // 2)
CFovX := (A_ScreenWidth // 8)
CFovY := (A_ScreenHeight // 64)
ScanL := ZeroX - CFovX
ScanT := ZeroY
ScanR := ZeroX + CFovX
ScanB := ZeroY + CFovY
NearAimScanL := ZeroX - AntiShakeX
NearAimScanT := ZeroY - AntiShakeY
NearAimScanR := ZeroX + AntiShakeX
NearAimScanB := ZeroY + AntiShakeY
 
Loop, {
    KeyWait, LButton, D
    PixelSearch, AimPixelX, AimPixelY, NearAimScanL, NearAimScanT, NearAimScanR, NearAimScanB, EMCol, ColVn, Fast RGB
    if (!ErrorLevel=0) {
        loop, 10 {
            PixelSearch, AimPixelX, AimPixelY, ScanL, ScanT, ScanR, ScanB, EMCol, ColVn, Fast RGB
            AimX := AimPixelX - ZeroX
            AimY := AimPixelY - ZeroY
            DirX := -1
            DirY := -1
            If ( AimX > 0 ) {
                DirX := 1
            }
            If ( AimY > 0 ) {
                DirY := 1
            }
            AimOffsetX := AimX * DirX
            AimOffsetY := AimY * DirY
            MoveX := Floor(( AimOffsetX ** ( 1 / 2 ))) * DirX
            MoveY := Floor(( AimOffsetY ** ( 1 / 2 ))) * DirY
            DllCall("mouse_event", uint, 1, int, MoveX * 1.5, int, MoveY, uint, 0, int, 0)
        }
    }
}
 
Pause:: pause
return:
goto, init
 
info:
msgbox, 0, %version%, Made by CelikShadow edited by WRsgdSFzx @ slut.io`nFortnite must be running in borderless windowed mode.`nPress pause key to pause this program.`nLeft click automatically aims down target near the center of the screen.`nRecommended for near distance(~15m) and full-auto weapons.
return
 
exit:
exitapp
REPLY WITH ERRORS, I WILL FIX THEM.

Enjoy.
Am I missing something or does the code still reference left mouse to activate?
#13 · 7y ago
B3
b3nntt
help?
keep getting an error when i click run script.

"error at line 2.
line text: #NoEnv
Error: this line does not contain a recognized action.
"

how do i fix?
#14 · 7y ago
CR
crz_luca05
ma poi come faccio a disattivarlo?
#15 · 7y ago
Posts 1–15 of 133 · Page 1 of 9
…

Post a Reply

Similar Threads

  • GamePlayerBot v7.5 (Pixel Detection Script Update)By Dab in Epic Duel (ED) Hacks / Cheats / Trainers
    50Last post 5y ago
  • Rust JackeD [CP bypassed, ESP , Aimbot , Speed Hack ] - Updated - Only on MPGH.By revolver4 in Rust Hacks / Cheats
    263Last post 11y ago
  • CS: GO [EXTERNAL BOX ESP] [AIMBOT] [TRIGGER BOT] UPDATE 20140717By sunkist0 in Counter-Strike 2 Hacks
    283Last post 12y ago
  • TF2 Source Hook (AIMBOT!)By willow925 in Team Fortress 2 Hacks
    12Last post 15y ago
  • Bf3 Aimbot v1.1 (Updated)By ghiles234 in Battlefield 3 (BF3) Hacks & Cheats
    21Last post 14y ago

Tags for this Thread

None