I made a simple camera script, in a local script, which makes the player view a part 5 seconds after joining.
This is in a local script.
local cam = game.Workspace.CurrentCamera local camnewton = game.Workspace.NewCamNewton wait(5) cam.CameraSubject = camnewton cam.CameraType = "Scriptable"
Ok When I did this I made a script so when the players joins the game the camera script is cloned into the players backpack.
Here
local CameraScript = --where the camera script is local Player = game.Players.LocalPlayer local PlayerBackpack = Player.Backpack --// Scripting //-- CameraScript:Clone() -- Clones Script -- CameraScript.Parent = PlayerBackpack -- Puts The Script Inside The Players Backpack -- -- Just put this script inside workspace because that's what I did and it worked --