Seriously, if you can't manage to code that by yourself, you shouldn't be here. It's got to be the easiest thing in the world to code other than print "hello world".
<edit> Just incase I get accused of being overly harsh, here's some code anyway
sync on
sync rate 100
for blahdeblah=1 to 20
print "blah blah blah"
next blahdeblah
get image 1,0,0,100,100
make object plain 1,10,10
texture object 1,1
scale object texture 1,3,3
do
scroll object texture 1,0,0.001
sync
loop
.... and in Star Wars style:
sync on
sync rate 100
color backdrop 0
autocam off
for blahdeblah=1 to 20
print "blah blah blah"
next blahdeblah
get image 1,0,0,100,100
make object plain 1,10,10
position object 1,0,0,5
xrotate object 1,-60
texture object 1,1
scale object texture 1,3,3
do
scroll object texture 1,0,-0.002
sync
loop