No worries,
vx.Image has a Blit method! :D
local img = vx.Image('hero.png')
while not vx.key.Enter.pressed do
-- Draws img to the screen.
img:Blit(5, 5)
-- If you prefer to be explicit:
-- img:Blit(5, 5, vx.screen)
vx.ShowPage()
end
(ohbtw, Lua is not an acronym. It is a word, Portuguese for moon. CAPITALIZING THE LETTERS THAT DO NOT NEED IT IS WEIRD WHY DO TONS OF PEOPLE DO IT. And "vx" is lower-case. I'm picky ;_;)