Now, next question! I'm wondering how to make it so the cube is on or attached to the matrix in some way. just so it's on top.
`turn sync on
sync on
`make matrix and randomize
make matrix 1,100000,100000,100,100
randomize matrix 1,4
`if you are using DBPro then you also need to update the matrix
update matrix 1
`make and position cube
cubex#=1
cubey#=1
cubez#=1
make object cube 1,4
position object 1,cubex#,cubey#,cubez#
`begin loop
do
`move cube
if upkey()=1 then cubez#=cubez#+1
if downkey()=1 then cubez#=cubez#-1
if rightkey()=1 then cubex#=cubex#+1
if leftkey()=1 then cubex#=cubex#-1
position object 1,cubex#,cubey#,cubez#
`sync and end loop
sync
loop
John "Dark Lord of Angel Destroying Destiny" Pringlebee, maybe?