--var
local wind,wind_2 = imgui.ImBool(false),imgui.ImBool(false)
local check = imgui.ImBool(false)
--while true
imgui.Process = wind.v or wind_2.v
--imgui
if wind.v then
--code
if imgui.CheckBox("Check", check) then
wind_2.v = check.v
end
--code
end