Sonic The Hedgehog,
It will work if you do exactly as BatVink has stated. Let's start from scratch. Create your objects beforehand. Use the
draw to back command, to draw the image behind any 3D objects(note, that you will need to use the
draw to front command whenever needing to draw a 2D graphic in front of any 3D objects. Afterwards, the
draw to back command will need to be used again. And, this order shall continue in a loop). Now, in the main loop, paste your image before the
sync command. Check the code snippet below.
sync on
sync rate 100
load image "name.bmp", 1
load image "texture.bmp", 2
make object sphere 1,10
texture object 1,2
REM <<<<<<<<< MAIN LOOP(all code that needs to be repeated and updated each loop) >>>>>>>>>
repeat
REM << BEFORE ANYTHING ELSE, set 'draw to back' and paste the background image to the screen
draw to back
paste image 1,0,0
sync
until mouseclick() = 1
cls
end

+NanoBrain+