Also possible.
Maybe you have to learn lua a little bit more. We are here to help you, not to make it for you.
Take a better look at the wiki mta samples.
function A ()
end
addEventHandler("onClientResourceStart",resourceRoot,
function ()
setTimer (A,5000,1) --5000 = 5 seconds, 1 = one time executed.
--add static image here
end)