-
What are you attempting to achieve? (Keep it simple and clear)
-Tween A Model’s Rotation -
What is the issue? (Keep it simple and clear - Include screenshots/videos/GIFs if possible)
-https://youtu.be/IwcPyVQXn5g
I want the model to Tween & face the Camera and then when it’s done the Model will Tween back.
Here’s the code
MenuF:WaitForChild('Mission').Sound:Play()
Cam.CFrame = workspace.Desk.CameraPart.CFrame
Cam.CameraType = 6
wait(8)
for i = 180 , 0 , - 1 do
print(i)
workspace.Desk.NPC:SetPrimaryPartCFrame(workspace.Desk.NPC.HumanoidRootPart.CFrame * CFrame.fromEulerAnglesXYZ(0,-1,0))
wait()
end