well this is the code that isnt working for me..
SetupStarSphere:
cls rgb(5,5,5)
fgcolor=RGB(255,255,255)
bgcolor=RGB(255,255,255)
ink fgcolor,bgcolor
for n=1 to 3000
dtx=rnd(1000):dty=rnd(1000)
dot dtx,dty
next n
get image 3,0,0,256,256,1
make object sphere 1,1000000,6,6
set object 1,1,1,0,0,0,0,0
texture object 1,3,3
scale object texture 1,10,10
position object 1,0,0,0
sync
return
it is meant to draw a black background with white stars but the background is also white, i have tried changing the rgb values but it doesnt change...