How to rotate a part in a local axis?

I don’t know if it’s the right term but is there a way to rotate a part in a local axis through script? Similar to how you rotate parts in Roblox Studio.

image_2021-04-13_135917

2 Likes

Probably CFrame

Part.CFrame = Part.CFrame * CFrame.Angles(0, math.rad(15), 0)
9 Likes