Roll camera without scriptable Camera Mode

So I want to roll the players camera, without setting the player camera to scriptable, as it does not follow them. I have looked everywhere online. But can’t find the solution. Anyone know?

All help appreciated. Thanks.

Here is an example of what I am trying to do, see how the camera rolls to the right? https://gyazo.com/7da50bccd146972f9766f03e420c6129

Roblox updated their Camera | Roblox Creator Documentation to be outdated. You can do this instead as advised by Roblox

local currentCFrame = workspace.CurrentCamera.CFrame
local rollCFrame = CFrame.Angles(0, 0, roll)
workspace.CurrentCamera.CFrame = currentCFrame * rollCFrame

Hope this helps both of us!
Best Regards, Shiroi

3 Likes