Staff forgot to pass over the dt argument to this function within the module.
Took me a minute to troubleshoot.
Line 220 under CameraModule.OrbitalCamera.
--snippet from the module
function OrbitalCamera:Update(dt: number): (CFrame, CFrame)
local now = tick()
local timeDelta = (now - self.lastUpdate)
local userPanningTheCamera = CameraInput.getRotation(dt) ~= Vector2.new()
-- ^
-- what you forgot to add
Thanks for reading!
Expected behavior
The orbital camera setting to work as normal without printing errors to output each step.