local master_switch_hitboxes = ui.new_checkbox('LUA', 'B', 'Aimbot shots hitboxes')
local hitboxes_color = ui.new_color_picker('LUA', 'B', 'Shots hitboxes color', 255, 0, 0, 65)
local hitboxes_time = ui.new_slider('LUA', 'B', '\n Shots hitboxes time', 5, 200, 20, true, 's', 0.1)
local function g_aim_fire(e)
local data = e
if ui.get(master_switch_hitboxes) then
local r, g, b, a = ui.get(hitboxes_color)
client.draw_hitboxes(e.target, ui.get(hitboxes_time)/10, 19, r, g, b, a, e.tick)
end
end
client.set_event_callback('aim_fire', g_aim_fire)