Ok first of all, you can't put the camera inside of the object, just like what you did and thats why it's not showing. So try maybe 0,0,10 for the camera position and put your object on like 0,0,0 so it'll be right infront of the camera. Remember, X,Y,Z those are the axises. If looking at the default direction of the camera, X will be right and left, Y will be foward and back and Z will be up and down.
Now for the increment, lets say you wanna place a cube as your object, use the sync commands to change the speed or whatever so it don't go too fast and therefore 1 increment ain't too much!
check out code
sync on
sync rate 40
Rem I usually use 40 as my refresh rate
autocam off
make object box 1,1,1,1
position object 1,0,0,0
position camera 0,0,0
point camera 0,0,0
do
if upkey()=1 then move object 1,1
Rem sync refreshes the screen
sync
loop
Something like that would be ok
EDIT: Dang! Ryan beat me to it!
Pie!