local Cam = Workspace.CurrentCamera Cam.CameraSubject = Workspace.InfoBlock Cam.CameraType = "Attach" Cam.CoordinateFrame = CFrame.new(10, 0, 10) Cam.Focus = CFrame.new(0, 0, 0) wait(3) Cam.CameraSubject = game.Players.LocalPlayer.Character.Humanoid Cam.CameraType = "Fixed"
There is another script that ads the local script into the Character:
game.Players.PlayerAdded:connect(function(player) Clone = script.MenuCam:Clone() Clone.Parent = player.CharacterAdded:wait() end)
local Cam = Workspace.CurrentCamera
The problem I believe lies within this first variable. When naming an object within workspace, it must be game.Workspace.
Try to fix the problem by making the variable
local Cam=game.Workspace.CurrentCamera