local current_stage = 1
local yaw = ui.find("Aimbot", "Anti Aim", "Angles", "Yaw", "Offset")
local ti_newcomer = ui.create("anti-brain","learnluapls")
local urmomisnotalivelol = ti_newcomer:switch("Enable Anti-Aim")
local z_polzunok_v = ti_newcomer:slider("Modifier Offset",-180, 180, 0)
events.createmove:set(function(cmd)
if urmomisnotalivelol:get() then
yaw_list = {-z_polzunok_v:get(), -z_polzunok_v:get()/2, 0, z_polzunok_v:get()/2, z_polzunok_v:get()}
if cmd.command_number % 4 > 1 then
current_stage = current_stage + 1
end
if current_stage == 5 then
current_stage = 1
end
yaw:set(yaw_list[current_stage])
print_dev("я лох")
end
end)