Помогите пожалуйста, когда закрываю меню, то фото не закрывается вместе с меню.
Lua:
local menu_pos = Render.GetMenuPos()
local size = Vector2.new(300, 425)
local url = 'https://cdn.discordapp.com/attachments/928331208465723392/928554516016664606/romka.png'
local bytes = Http.Get(url)
local image = Render.LoadImage(bytes, size)
local switch = Menu.Switch('Top Lua', 'Буст фоточка', false, 'оо да', function(val)
local is_visible = Cheat.IsMenuVisible()
if (val) then
Cheat.RegisterCallback('draw', function()
local menu_pos2 = Render.GetMenuPos()
Render.Image(image, Vector2.new(menu_pos2.x-279, menu_pos2.y-97), size)
Cheat.IsMenuVisible()
end)
else
Cheat.RegisterCallback('draw', function()
Render.Image(image, Vector2.new(menu_pos.x+4000, menu_pos.y+4000), size)
end)
end
end)