So I was trying to make a title screen where the camera is at a custom point. I don't have a very good understanding of CFrame or camera control period. Here is my script:
local camera = game.Workspace.CurrentCamera local player = script.Parent.Parent.Parent local button = player.PlayerGui.ScreenGui.TextButton repeat camera.CameraType = Enum.CameraType.Scriptable until camera.CameraType == Enum.CameraType.Scriptable camera.CFrame = game.Workspace.Camera1.CFrame button.MouseButton1Click:Connect(function() camera.CameraType = Enum.CameraType.Custom button:Destroy() end)