Hello heres a fun little code i made (well at least i think its fun) you might use it for controlling multiple objects its probably pointless but i'm going to share it anyways.. i'm still a newb after all so plz dont bash on me... the controls are a s d and f you have to hold 1 of them down and press left right up and down to move an object tell me what you think
Sync on : Sync rate 30
Autocam off
Make Object Cube 1,2 : Position Object 1,-15,0,50 : color object 1,rgb(50,0,0)
Make Object Cube 2,2 : Position Object 2,-10,0,50 : color object 2,rgb(0,50,0)
Make Object Cube 3,2 : Position Object 3,-5,0,50 : color object 3,rgb(0,0,50)
Make Object Cube 4,2 : Position Object 4,0,0,50 : color object 4,rgb(50,0,0)
Do
If Keystate(30)=1 then if leftkey()=1 then move object left 1,2
If Keystate(30)=1 then if rightkey()=1 then move object right 1,2
If Keystate(30)=1 then if upkey()=1 then move object up 1,2
If Keystate(30)=1 then if downkey()=1 then move object down 1,2
If Keystate(31)=1 then if leftkey()=1 then move object left 2,2
If Keystate(31)=1 then if rightkey()=1 then move object right 2,2
If Keystate(31)=1 then if upkey()=1 then move object up 2,2
If Keystate(31)=1 then if downkey()=1 then move object down 2,2
If Keystate(32)=1 then if leftkey()=1 then move object left 3,2
If Keystate(32)=1 then if rightkey()=1 then move object right 3,2
If Keystate(32)=1 then if upkey()=1 then move object up 3,2
If Keystate(32)=1 then if downkey()=1 then move object down 3,2
If Keystate(33)=1 then if leftkey()=1 then move object left 4,2
If Keystate(33)=1 then if rightkey()=1 then move object right 4,2
If Keystate(33)=1 then if upkey()=1 then move object up 4,2
If Keystate(33)=1 then if downkey()=1 then move object down 4,2
Sync
Loop
peace
David