Page 1 of 7 123 ... LastLast
Results 1 to 15 of 97
  1. #1
    kiwixcoke's Avatar
    Join Date
    Dec 2018
    Gender
    male
    Posts
    0
    Reputation
    10
    Thanks
    16

    Post (New) Fortnite AHK Aimbot Script 100% Undetected (Legit Cheating)

    Hello I found a working aimbot script and thought I might share it with you

    How to:
    Download AutoHotKey
    Make Fornite Borderless
    Run Aimbot.ahk

    Aimbot Script (You Need AutoHotKey Installed)

    init:
    #NoEnv
    #SingleInstance, Force
    #Persistent
    #InstallKeybdHook
    #UseHook
    #KeyHistory, 0
    #HotKeyInterval 1
    #MaxHotkeysPerInterval 127
    version = 1.1
    traytip, Compiled-Aimbot-.[censored].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,0xD82 A22,0x240E11,0x955647,0x5D024F,0x1599A5,0x61145C,0 xEEE679,0xD0723E,0xEAE6DB,0x915612,0x424649,0x7F51 03,0x54697E,0xD68E44,0xB80A0V,0xD0B56A,0x813D2B,0x aC351A,0xE9D795,0xB5AF9B,0xE94F58,0x612B37,0x2ADD3 1,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
    Last edited by Royce; 12-25-2018 at 04:42 PM.

  2. The Following 16 Users Say Thank You to kiwixcoke For This Useful Post:

    amin0012353 (01-17-2019),Asee (01-10-2019),Benizelos (03-05-2019),brakh10 (11-03-2022),Daniu69 (06-18-2019),darks0n1k (07-11-2019),DickSuck1234 (01-31-2022),IBloxxed0 (07-23-2019),Jacksux (11-21-2020),JuanModzYT (01-08-2019),kaiki torch (01-13-2019),lolxdssdas (10-20-2019),lxkey77 (01-08-2022),salym3 (04-16-2019),Sslender (08-15-2019),sussssssssssy2 (06-18-2022)

  3. #2
    Royce's Avatar
    Join Date
    Oct 2011
    Gender
    male
    Posts
    17,967
    Reputation
    4088
    Thanks
    6,418
    Removed the video due to advertisement and added a How to.

  4. The Following User Says Thank You to Royce For This Useful Post:

    brakh10 (11-03-2022)

  5. #3
    keon62897's Avatar
    Join Date
    Dec 2018
    Gender
    male
    Posts
    6
    Reputation
    10
    Thanks
    1
    Quote Originally Posted by kiwixcoke View Post
    Hello I found a working aimbot script and thought I might share it with you

    How to:
    Download AutoHotKey
    Make Fornite Borderless
    Run Aimbot.ahk

    Aimbot Script (You Need AutoHotKey Installed)

    init:
    #NoEnv
    #SingleInstance, Force
    #Persistent
    #InstallKeybdHook
    #UseHook
    #KeyHistory, 0
    #HotKeyInterval 1
    #MaxHotkeysPerInterval 127
    version = 1.1
    traytip, Compiled-Aimbot-.[censored].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,0xD82 A22,0x240E11,0x955647,0x5D024F,0x1599A5,0x61145C,0 xEEE679,0xD0723E,0xEAE6DB,0x915612,0x424649,0x7F51 03,0x54697E,0xD68E44,0xB80A0V,0xD0B56A,0x813D2B,0x aC351A,0xE9D795,0xB5AF9B,0xE94F58,0x612B37,0x2ADD3 1,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
    wouldnt you just get banned

  6. The Following User Says Thank You to keon62897 For This Useful Post:

    brakh10 (11-03-2022)

  7. #4
    Nightxax's Avatar
    Join Date
    Dec 2018
    Gender
    male
    Posts
    1
    Reputation
    10
    Thanks
    0

    so can i change the keybind to the letter v?

    Quote Originally Posted by kiwixcoke View Post
    Hello I found a working aimbot script and thought I might share it with you

    How to:
    Download AutoHotKey
    Make Fornite Borderless
    Run Aimbot.ahk

    Aimbot Script (You Need AutoHotKey Installed)

    init:
    #NoEnv
    #SingleInstance, Force
    #Persistent
    #InstallKeybdHook
    #UseHook
    #KeyHistory, 0
    #HotKeyInterval 1
    #MaxHotkeysPerInterval 127
    version = 1.1
    traytip, Compiled-Aimbot-.[censored].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,0xD82 A22,0x240E11,0x955647,0x5D024F,0x1599A5,0x61145C,0 xEEE679,0xD0723E,0xEAE6DB,0x915612,0x424649,0x7F51 03,0x54697E,0xD68E44,0xB80A0V,0xD0B56A,0x813D2B,0x aC351A,0xE9D795,0xB5AF9B,0xE94F58,0x612B37,0x2ADD3 1,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
    so can i change the keybind to the letter v?

  8. #5
    LAMPASAK's Avatar
    Join Date
    Aug 2017
    Gender
    male
    Posts
    5
    Reputation
    10
    Thanks
    0

    Thanks!

    Thanks for ahk.

  9. #6
    kakkakuula69's Avatar
    Join Date
    Dec 2017
    Gender
    male
    Posts
    1
    Reputation
    10
    Thanks
    0

    lmfao

    This is same script from season3

  10. #7
    xslytifyx's Avatar
    Join Date
    Aug 2018
    Gender
    male
    Posts
    15
    Reputation
    10
    Thanks
    0
    i am scared of getting a ban, does this work well?

  11. #8
    _huskeR's Avatar
    Join Date
    Dec 2018
    Gender
    male
    Posts
    20
    Reputation
    10
    Thanks
    1
    really helped bro cheers <3

  12. #9
    RadoxDZN's Avatar
    Join Date
    Dec 2018
    Gender
    male
    Posts
    16
    Reputation
    10
    Thanks
    2
    awesome, ty for instructions

  13. #10
    relaxproskillz's Avatar
    Join Date
    Nov 2017
    Gender
    male
    Posts
    2
    Reputation
    10
    Thanks
    1
    My Mood
    Confused

    Angry This ahk script sucks

    Its so bad, it doesnt even lock onto the enemy

  14. The Following User Says Thank You to relaxproskillz For This Useful Post:

    amishjohn (01-18-2019)

  15. #11
    speedyrecovery's Avatar
    Join Date
    Jan 2019
    Gender
    male
    Posts
    2
    Reputation
    10
    Thanks
    0

    ?

    I don't get it? How do I download this or get it to work?

  16. #12
    MonkaS.Yikes's Avatar
    Join Date
    Dec 2018
    Gender
    male
    Posts
    48
    Reputation
    10
    Thanks
    6
    My Mood
    Amazed

    Not working

    On me its just getting me an error message

  17. #13
    speedyrecovery's Avatar
    Join Date
    Jan 2019
    Gender
    male
    Posts
    2
    Reputation
    10
    Thanks
    0

    Unhappy ??

    how do I run aimbot.ahk ?

  18. #14
    GnTaleFX's Avatar
    Join Date
    Dec 2017
    Gender
    male
    Posts
    1
    Reputation
    10
    Thanks
    0

    GnTaleFx 1

    i'm already run it and then just nothing happened for my fortnite just weird aim

  19. #15
    pr0xydev's Avatar
    Join Date
    Dec 2016
    Gender
    male
    Posts
    199
    Reputation
    10
    Thanks
    22
    My Mood
    Happy
    It's a joke?

Page 1 of 7 123 ... LastLast

Similar Threads

  1. New Wallhack 100% undetected
    By Brian958 in forum Combat Arms Hacks & Cheats
    Replies: 8
    Last Post: 09-01-2008, 12:07 AM
  2. Aimbot V1.1 100% Undetected
    By rogerwilliams in forum Combat Arms Hacks & Cheats
    Replies: 32
    Last Post: 08-21-2008, 12:49 AM
  3. OPK with NEW Bypass !!! 100% UNDETECTED
    By o0KoNsY0o in forum WarRock - International Hacks
    Replies: 44
    Last Post: 12-07-2007, 08:03 AM
  4. new hack 100% undetected
    By helboi in forum WarRock - International Hacks
    Replies: 4
    Last Post: 09-05-2007, 09:36 AM
  5. new hack 100% undetected
    By helboi in forum WarRock - International Hacks
    Replies: 39
    Last Post: 09-02-2007, 04:46 PM