Advertisement
TypicalModder

Fortnite Aimbot Script (May Not Work)

Oct 29th, 2019
20,723
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.65 KB | None | 0 0
  1. **I DONT OWN THIS SCRIPT**
  2. Source: https://www.ftwhacks.com/free-fortnite-aimbot-download/
  3.  
  4. AHK is detectable. Use anti-cheat or something to mask your mouse movements. It is recommended not to use the script on your primary account, as there is a risk of getting banned.
  5.  
  6. init:
  7. #NoEnv
  8. #SingleInstance, Force
  9. #Persistent
  10. #InstallKeybdHook
  11. #UseHook
  12. #KeyHistory, 0
  13. #HotKeyInterval 1
  14. #MaxHotkeysPerInterval 127
  15. version = 1.1
  16. traytip, Compiled-Aimbot-.mpgh.net%version%, Running in background!, 5, 1
  17. Menu, tray, NoStandard
  18. Menu, tray, Tip, Sharpshooter %version%
  19. Menu, tray, Add, Sharpshooter %version%, return
  20. Menu, tray, Add
  21. Menu, tray, Add, Help, info
  22. Menu, tray, Add, Exit, exit
  23. SetKeyDelay,-1, 1
  24. SetControlDelay, -1
  25. SetMouseDelay, -1
  26. SetWinDelay,-1
  27. SendMode, InputThenPlay
  28. SetBatchLines,-1
  29. ListLines, Off
  30. CoordMode, Pixel, Screen, RGB
  31. CoordMode, Mouse, Screen
  32. PID := DllCall("GetCurrentProcessId")
  33. Process, Priority, %PID%, HighEMCol := 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
  34. ColVn := 65
  35. AntiShakeX := (A_ScreenHeight // 160)
  36. AntiShakeY := (A_ScreenHeight // 128)
  37. ZeroX := (A_ScreenWidth // 2)
  38. ZeroY := (A_ScreenHeight // 2)
  39. CFovX := (A_ScreenWidth // 8)
  40. CFovY := (A_ScreenHeight // 64)
  41. ScanL := ZeroX - CFovX
  42. ScanT := ZeroY
  43. ScanR := ZeroX + CFovX
  44. ScanB := ZeroY + CFovY
  45. NearAimScanL := ZeroX - AntiShakeX
  46. NearAimScanT := ZeroY - AntiShakeY
  47. NearAimScanR := ZeroX + AntiShakeX
  48. NearAimScanB := ZeroY + AntiShakeYLoop, {
  49. KeyWait, LButton, D
  50. PixelSearch, AimPixelX, AimPixelY, NearAimScanL, NearAimScanT, NearAimScanR, NearAimScanB, EMCol, ColVn, Fast RGB
  51. if (!ErrorLevel=0) {
  52. loop, 10 {
  53. PixelSearch, AimPixelX, AimPixelY, ScanL, ScanT, ScanR, ScanB, EMCol, ColVn, Fast RGB
  54. AimX := AimPixelX - ZeroX
  55. AimY := AimPixelY - ZeroY
  56. DirX := -1
  57. DirY := -1
  58. If ( AimX > 0 ) {
  59. DirX := 1
  60. }
  61. If ( AimY > 0 ) {
  62. DirY := 1
  63. }
  64. AimOffsetX := AimX * DirX
  65. AimOffsetY := AimY * DirY
  66. MoveX := Floor(( AimOffsetX ** ( 1 / 2 ))) * DirX
  67. MoveY := Floor(( AimOffsetY ** ( 1 / 2 ))) * DirY
  68. DllCall("mouse_event", uint, 1, int, MoveX * 1.5, int, MoveY, uint, 0, int, 0)
  69. }
  70. }
  71. }
  72.  
  73. Pause:: pause
  74. return:
  75. goto, init
  76.  
  77. info:
  78. 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.
  79. return
  80.  
  81. exit:
  82. exitapp
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement