So I'm trying to change the position of my camera but this doesn't seem to do it, There are no errors though.
local script inside of StarterPlayerScripts, FE on
local cameramod = require(game.Workspace.CameraPlus) local curcam = game.Workspace.CurrentCamera game.Players.PlayerAdded:connect(function(player) curcam.CameraSubject = game.Workspace.CameraPos curcam.CameraType = "Scriptable" curcam.CoordinateFrame = CFrame.new(-90.9, 7.061, 171.907) end)