of     1   

Akartas
#45504241Wednesday, April 13, 2011 6:34 AM GMT

I want to place an object 5 studs in front of an object, how would I do so?
MrKazz
#45504287Wednesday, April 13, 2011 6:43 AM GMT

I would not use lookVector at all I do not remember which axis is the front, so I will just post which one I think, you can change it to the other if you wish. Part.CFrame = Part2.CFrame * CFrame.new(0, 0, 5)
Akartas
#45504324Wednesday, April 13, 2011 6:51 AM GMT

Thanks!
Robert00001
#45506118Wednesday, April 13, 2011 10:32 AM GMT

@Sehnsucht, Depends if the brick is rotated, So you could use lookVector Part.CFrame = Part.CFrame + (Part.CFrame.lookVector*5)
Akartas
#45511137Wednesday, April 13, 2011 3:23 PM GMT

Ah alright, thank you Robert.
oysi93
#45511184Wednesday, April 13, 2011 3:26 PM GMT

@Robert No. CFrame takes rotation into consideration. A CFrame is a position along with a rotation, you see. Btw, front is negative z axis.

    of     1