There are a few things wrong. First, SetPrimaryPartCFrame()
doesn't work like that. It works like this: model:SetPrimaryPartCFrame(CFrame.new())
. It has to go inside the parentheses. Second, CFrame.new()
accepts 2 main Vector3s: Position and LookVector.
An example: Lets say you want to move Part1 to Part2 and have it face Part3:
1 | Part 1. CFrame = CFrame.new(Part 2. Position, Part 3. Position); |
Another example: Part1 teleports to origin and faces directly
up.
1 | Part 1. CFrame = CFrame.new(Vector 3. new( 0 , 0 , 0 ), Vector 3. new( 0 , 10 , 0 )); |
Now, you can also multiply a CFrame by CFrame.Angles(radX, radY, radZ) to rotate it. Keep in mind that CFrame.Angles() accepts radians only, so you can convert between degrees to radians VIA math.rad(degree).
For example, lets say we want to teleport Part1 to Part2 and rotate it 90 degrees. You can do this 2 ways:
1 | Part 1. CFrame = Part 2. CFrame * CFrame.Angles( 0 , math.pi/ 2 , 0 ); |
or
1 | Part 1. CFrame = Part 2. CFrame * CFrame.Angles( 0 , math.rad( 90 ), 0 ); |
Here are some resources to help you get started:
What are CFrames?
CFrame Math operations
Understanding CFrames