the code runs but it when i play all i see is sky
game.Workspace.Camera.CameraType = "Scriptable"game.Workspace.Camera.CFrame = CFrame.new(game.Workspace.CamPart.Position*game.Workspace.FocusPoint.Position)
the code runs but it when i play all i see is sky
game.Workspace.Camera.CameraType = "Scriptable"game.Workspace.Camera.CFrame = CFrame.new(game.Workspace.CamPart.Position*game.Workspace.FocusPoint.Position)
Are you trying to make the camera face the direction of the part?
If so…
Then here is the script:
local CC = game.Workspace.CurrentCamera
CC.CameraType = Enum.CameraType.Scriptable
local part = game.Workspace:FindFirstChild("CamPart")
CC.CFrame = CFrame.new(CC.CFrame.Position, part.Position)
Make sure to put the code in a local script and put it somewhere where a localscript can run.
wait, it just makes it so that i cant move my screen