of     1   

appropriations
#63864721Monday, March 05, 2012 7:22 AM GMT

How do you rotate a parts CFrame?
appropriations
#63910507Tuesday, March 06, 2012 7:19 AM GMT

-BUMP-
Tribes78
#63910516Tuesday, March 06, 2012 7:20 AM GMT

There's a couple ways. I use CmdUtl but you can use the command toolbar to do something like this; game.Workspace.Part.CFrame = CFrame.new(0,0,0) * CFrame.fromEulerAnglesXYZ(math.rad(15),0,0)
appropriations
#63922168Tuesday, March 06, 2012 8:34 PM GMT

Thanks that is what I need
Notunknown99
#63922431Tuesday, March 06, 2012 8:40 PM GMT

part.CFrame = part.CFrame*CFrame.Angles(math.rad(15),0,0) Works just as well and is much shorter.

    of     1