Or simply:
set display mode desktop width(), desktop height(), 32
sync on : sync rate 60 : sync
autocam off
position camera 0, -40, -400
point camera 0, -40, 0
color backdrop rgb(0,0,0)
fog on
fog distance 100, 500
` make some text and save it as an image
create bitmap 1, 512, 512
cls rgb(0, 128, 0)
center text 256, 200, "A long time ago in a galaxy far, far, away"
center text 256, 260, "Ric and Lee had an idea."
center text 256, 320, " etc"
center text 256, 380, " etc"
center text 256, 440, "Then came the AGK"
get image 1, 0, 0, 512, 512
set current bitmap 0
make object plane 1, 500, 500
texture object 1, 1
xrotate object 1, -65
set object texture 1, 3, 0
scroll object texture 1, 0.0, -0.5
repeat
scroll object texture 1, 0.0, 0.001
sync
until spacekey()
end