Camera manipulation help!

Is there a way to make a camera snapping system like the one in Bee Swarm Simulator? (if you are unaware, you can press < or > to snap the camera 45° in BSS) and i want to make it so i can make some seamless shots in my game for a video

thanks!!!

I think you can do this already by pressing , and .

But if you prefer a Script, it’s actually pretty simple

This function will snap the Camera in the Y Axis (Yaw)

function SnapYA(Angle)
      workspace.CurrentCamera.CFrame *= CFrame.Angles(0,math.rad(Angle),0)
end

Example Usage

function SnapYA(Angle)
      workspace.CurrentCamera.CFrame *= CFrame.Angles(0,math.rad(Angle),0)
end

local TurningAmount = 10 -- Set to Negative for opposite Turning

SnapYA(10)