Back

GTA V Aim Bot Script

PS5 Auto Headshot Aim Bot

This script automatically adjusts your aim to target enemy heads in GTA V Online. Works with PS5 controller via Cronus Zen.

// GTA V Auto Headshot Aim Bot for PS5
define AIM_SMOOTHING = 3; // Lower = more aggressive
define HEADSHOT_Y_OFFSET = -15; // Vertical adjustment
define TRIGGER_THRESHOLD = 30; // Aim assist activation range

main {
    if(get_val(PS5_R2) > 50) { // When shooting
        combo_run(AimAssist);
    }
}

combo AimAssist {
    if(get_ptime(AimAssist) > 1000) { // Reset after 1 sec
        combo_stop(AimAssist);
    }
    
    if(abs(get_val(PS5_RX)) < TRIGGER_THRESHOLD && 
       abs(get_val(PS5_RY)) < TRIGGER_THRESHOLD) {
        // Apply small adjustments to aim at head
        set_val(PS5_RX, get_val(PS5_RX) / AIM_SMOOTHING);
        set_val(PS5_RY, (get_val(PS5_RY) + HEADSHOT_Y_OFFSET) / AIM_SMOOTHING);
    }
    
    wait(10); // Small delay between adjustments
}

/* 
Instructions:
1. Adjust AIM_SMOOTHING for faster/slower targeting
2. Modify HEADSHOT_Y_OFFSET based on your sensitivity
3. Set TRIGGER_THRESHOLD to control activation range
*/

Features

  • Auto-adjusts aim to target enemy heads
  • Configurable sensitivity and smoothing
  • Only activates when aiming near targets
  • Works with all weapons in GTA V

Settings Guide

AIM_SMOOTHING

Higher values make the aim adjustments smoother (3-5 recommended)

HEADSHOT_Y_OFFSET

Adjust this (-10 to -20) based on your vertical sensitivity

TRIGGER_THRESHOLD

Increase if aim assist activates too easily (20-40 range)