I completely forget if i've asked this before, I don't think I have, but I use a dynamic object as my player then add forces to make him move using
if upkey()=1 then phy add rigid body force 1,0,0,5,2
if downkey()=1 then phy add rigid body force 1,0,0,-5,2
if leftkey()=1 then phy add rigid body force 1,-5,0,0,2
if rightkey()=1 then phy add rigid body force 1,5,0,0,2
And I could not figure out how to make the UP and DOWN keys move the character back and forth where he's FACING. So say he's facing kind of north-west I would want him to move that way using UP and DOWN instead of how I have it where it just moves him along the Z axis.
After I figure out how to do that changing the left and right keys to rotate the player shouldn't be hard at all (I hope)
I want coke, not Pepsi!