-- запрещено использовать в коллбеках НА ХУЙ
local current_idx = 1
local values = { 33, 100, 1337, 228 }
local function loop()
utils.execute_after(0.5, function()
something:override(values[current_idx])
current_idx = current_idx + 1
if current_idx > #values then
current_idx = 1
end
loop()
end)
end
loop()