Need some help on how to make the camera tween from one position to the player
This code will tween to the player / reset the camera. Assumably used in a localscript.
function resetcam() plr = game.Players.LocalPlayer camera = workspace.CurrentCamera camera:Interpolate(CFrame.new(char.Head.Position), CFrame.new(char.Torso.Position), 0.5) wait(0.5) camera.CameraType="Custom" camera.CameraSubject = game.Players.LocalPlayer.Character end