I made a Script with a LocalScript in it and in the Script I typed the following in:
game.Players.PlayerAdded:connect(function(player) player.CharacterAdded:connect(function(character) script.LocalScript:clone().Parent = character end) end)
In the LocalScript I typed the following:
local cam = workspace.CurrentCamera cam.CameraType = "Scriptable" cam.CoordinateFrame.CFrame.new(50, 41, 201)
Please help me! :(
In the 4th line of your local script, remember that you're resetting the value of the Coordinate Frame.
cam.CoordinateFrame = CFrame.new(50, 41, 201) -- The equal sign is important; without it you're not doing anything with the C-Frame of the camera.