ah you mean background scrolling,
okay ill make one for you
Edit: allright, here is a quick one and there are surely other ways to make this.
this is just a quick and messy one
box 2,2,26,26
ink rgb(0,0,0),0
line 2,12,26,12
line 12,2,12,26
get image 1,2,2,24,24
cls
ink rgb(255,255,255),0
Rem Make Sprite
circle 10,10,10
line 10,0,10,10
get image 2,0,0,21,21
make object plain 1,640,480
position object 1,0,0,400
`xrotate object 1,90
position camera 0,0,0,0
point camera 0,0,0,50
lock object on 1
texture object 1,1
scale object texture 1,32,24
Rem start loop
Sync On
Do
if leftkey() or rightkey()
x# = x# + (rightkey() - leftkey())
endif
if upkey() or downkey()
y# = y# + (downkey() - upkey())
endif
sprite 1,x#,y#,2 : scale sprite 1,200
if x# =< 0
x# = 0
scroll object texture 1,-0.05,0
endif
if x# => screen width()-sprite width(1)
x# = screen width()-sprite width(1)
scroll object texture 1,0.05,0
endif
if y# =< 0
y# = 0
scroll object texture 1,0,-0.05
endif
if y# => screen height()-sprite height(1)
y# = screen height()-sprite height(1)
scroll object texture 1,0,0.05
endif
sync
loop