Hi there
Not sure if our friend means moving up and down continually and automatically.
Quote: "Just note, these move based off your objects forward facing angle so if you rotate the object it will move in the direction it's facing."
That is what I did in my dangerous lifts 20 lines
autocam off
sync on
sync rate 60
make object box 1,15,0,15
color object 1,rgb(0,255,0)
make object box 2,1,1,1
color object 2,rgb(255,0,0)
position object 2,0,1,0
position camera -10,15,-15
point camera 0,0,0
do
move object up 2,0.1
if object position y(2)>10 then xrotate object 2,180
if object position y(2)<1 then xrotate object 2,0
sync
loop
I'm not a grumpy grandpa
