Roate script - Spawn

How can i roate car?
image
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.

image

Okay, use this code then.
clone:SetPrimaryPartCFrame(CFrame.new(script.Parent.pos.Value) * CFrame.Angles(0,180,0))


why it isn’t right?

Try playing with the numbers inside the CFrame.Angles value