I want to make sure I get this right, so I am asking here.......
How do I put into a script to raise something? When I place an item, I have to raise it by 1 to look right, how would I do that?
 
As Enroq said..

Code:
this.Z++;

..works, or you could also specify an exact increment like...

Code:
this.Z += 7;
 
Back