local img = guiCreateStaticImage( 50, 250, 20, 100, "show.png", false )--imgانشاء صورة وتعريفها بمتغير
guiSetVisible(img,false)-- اغلاق الصورة
addEventHandler("onClientGUIClick", root,
function ()
if source == show then -- show اذا ضغط زر
guiSetVisible(img,not guiGetVisible(img))--img اظهاراو اخفاء
end
end
)