alrighty then, i've made a bit of mistake here. I'm not making a train game, i'm making a snake game

(Please don't Laugh). I'm embarrased because its noob stuff and i'm still having a hard time with it, and as you probably know jess its taken me well over a year to get even a small grip on darkbasic programming. This is very embarrasing because i've heard people say stuff on these forums like "DarkBASIC is so easy, even Idiots can learn it" and stuff like that. I posted a different thread before but not much people saw it and i think its already sank. I'm gonna try to enter this in the competition, then have a crack at the intermediate level.
Anyways, more about the snake game instead of self pity. The thing is i've got my snake, which is, at the moment, a cube. it moves very different from a normal snake game, instead of having a box like movement it is very free, and the snake swerves around.
Heres the movement
`Make the Player (Model not found yet.)
MAKE OBJECT CUBE 1,10
`Set up the Game
SYNC ON
SYNC RATE 50
HIDE MOUSE
AUTOCAM OFF
`Variables
PlayerMove = 0
Faster = 0
angy# = 0
angx# = 0
angz# = 0
`Camera
POSITION CAMERA OBJECT POSITION X(1),250,OBJECT POSITION Z(1)
POINT CAMERA OBJECT POSITION X(1),OBJECT POSITION Y(1),OBJECT POSITION Z(1)
`Main Loop
DO
`Controls
`Moving
IF UPKEY() = 0
INC PlayerMove
ENDIF
IF PlayerMove > 0
MOVE OBJECT 1,1
DEC PlayerMove
ENDIF
`Faster
IF UPKEY() = 1
INC Faster
ENDIF
IF Faster > 0
MOVE OBJECT 1,2
DEC Faster
ENDIF
`Left and Right
`Left
IF LEFTKEY() = 1
angx# = angx# - 4
ENDIF
`Right
IF RIGHTKEY() = 1
angx# = angx# + 4
ENDIF
ROTATE OBJECT 1,WRAPVALUE(angy#),WRAPVALUE(angx#),WRAPVALUE(angz#)
`Sync
SYNC
`END OF LOOP
LOOP
You have already helped with this game on the collision jess, you might remember. anyways when the snake eats the food (Which it successfully does) the second piece of tail appears, right behind the snake. the problem with this though is the tail does not follow, and i wanted it to follow in the train like example as i said before. I didn't say this before because, Again, i was too embarrased.
Anyways, Heres the code
Hope you guys understand now.
Cya
Axelman
This Space for rent