--credit Freakon --timed image display script local timer_started = nil local folder = "scriptbank\\images\\pic1" --folder where image is function pic2_init(e) LoadImages("pic1",0) end function pic2_main(e) if g_Entity[e]['plrinzone']==1 then if timer_started == nil then StartTimer(e) timer_started = 1 end SetImagePosition(50,50) -- percent x/y image position is centred on screen ShowImage(0) if GetTimer(e)>3000 then -- 3000 is 3000 m/s or 3 seconds image display HideImage(0) Destroy(e) -- script runs once only with this command end end end