-- Import required libraries
local math = require("math")

-- Function to calculate maximum aim assist
function max_aim_assist()
    -- Define aim assist parameters
    local aim_assist_strength = 0.8 -- Aim assist strength (0 to 1)
    local aim_assist_radius = 50 -- Aim assist radius in pixels
    
    -- Calculate maximum aim assist
    local max_assist = aim_assist_strength * aim_assist_radius
    
    return max_assist
end

Embed on website

To embed this program on your website, copy the following code and paste it into your website's HTML: