How can I tilt the camera?

Like the title says, how can I tilt the camera?

2 Likes
local RunService = game:GetService("RunService")
local Workspace = game:GetService("Workspace")

local Camera = Workspace.CurrentCamera

RunService.RenderStepped:Connect(function()
    Camera.CFrame *= CFrame.Angles() -- Your tilt in the brackets
end)
4 Likes