local CurrentCamera = game.Workspace.CurrentCamera --Whats the difference? local Camera = game.Workspace.Camera
Roblox recommends you to use workspace.CurrentCamera then workspace.Camera because it accurately returns the Camera the client is using.
workspace.Camera -- might be another camera due to another camera can be created workspace.CurrentCamera -- returns the camera the client is using so no mistakes can be made
That's why!