I'm trying to make the camera move around but the camera just stays still.
Here's my script:
CameraPoints = {CFrame.new(1,5,1),CFrame.new(1,6,1),CFrame.new(1,7,1)}
workspace.CurrentCamera.CameraSubject = nil
for i = 1,#CameraPoints do
wait(1)
workspace.CurrentCamera.CoordinateFrame = CameraPoints[i]
end |