game.Players.PlayerAdded:connect(function(player) Camera = game.Workspace.CurrentCamera Camera.CameraType = "Scriptable" Camera.CameraSubject = player.Character.Torso end)
It has to be a local script and playeradded does not fire in local scripts. Add to startergui or in the player!
So it would most likely look like this:
local player = game.Players.LocalPlayer Camera = game.Workspace.CurrentCamera Camera.CameraType = "Scriptable" Camera.CameraSubject = player.Character.Torso