local menu_pos = Render.GetMenuPos()
local size = Vector2.new(664, 804)
local url = 'https://media.discordapp.net/attachments/877259445900542025/921462494432731146/skeet.png?width=530&height=402'
local bytes = Http.Get(url)
local image = Render.LoadImage(bytes, size)
local switch = Menu.Switch('ГЕЙСЕКС', 'КТО НАЖМЁТ ТОТ ПАСТЕР!!!', false, 'ТЫ ЧТО АХУЕЛ ПАСТЕР ЕБАНЫЙ', function(val)
if (val) then
Cheat.RegisterCallback('draw', function()
local menu_pos2 = Render.GetMenuPos()
Render.Image(image, Vector2.new(menu_pos2.x, menu_pos2.y), size)
end)
else
Cheat.RegisterCallback('draw', function()
Render.Image(image, Vector2.new(menu_pos.x+4000, menu_pos.y+4000), size)
end)
end
end)