Like I know how to select different camera types on the character but what about if I wanted to use a part that the camera would lock on?
Change the CameraSubject property of the camera.
local Player = game.Players.LocalPlayer local Cam = game.Workspace.CurrentCamera Cam.CameraSubject = Player.Character.Torso --Or if it were just a random brick in the Workspace Cam.CameraSubject = game.Workspace.Part
Alternatively, you could use Focus.