local knopka = ui.add_checkbox("SWAG CLANTAG")
local labels = {
"h",
"hu",
"hue",
"huet",
"hueta",
}
local time = {
first = 0, second = 0
}
cheat.push_callback("on_paint", function()
if knopka:get() then
if time.first < globalvars.get_tickcount() then
time.second = time.second + 1
if time.second > #labels + 1 then
time.second = 0
end
engine.set_clantag(labels[time.second])
time.first = globalvars.get_tickcount() + 34
end
end
end)