How can i roate car?

This isn’t works:
clone:SetPrimaryPartCFrame(CFrame.new(script.Parent.pos.Value))
clone:SetPrimaryPartCFrame(CFrame.fromEulerAnglesXYZ(0, 180, 0))
How can i roate car?

This isn’t works:
clone:SetPrimaryPartCFrame(CFrame.new(script.Parent.pos.Value))
clone:SetPrimaryPartCFrame(CFrame.fromEulerAnglesXYZ(0, 180, 0))
Is this
script.Parent.pos.Value a vector3 value or a cframe value?
this part of script works.

Okay, use this code then.
clone:SetPrimaryPartCFrame(CFrame.new(script.Parent.pos.Value) * CFrame.Angles(0,180,0))
Try playing with the numbers inside the CFrame.Angles value