How to make starting camera position in gui

Hello Everyone, I need some help with deving a game I’m making with my friend, I want the camera background to be faced to the main road. But both of us don’t know how to do it, here’s a screenshot

Basically I want the background camera to be at a certain position

Learn about how the camera works with this

understand the basics and use this code

local cam = workspace.CurrentCamera

cam.CameraType = Enum.CameraType.Scriptable
cam.CFrame = somewhere -- set the cframe of this camera
2 Likes