Cutscene Issues

What do you want to achieve?
I want to make cutscenes for my game.

What is the issue?
I’m having issues getting the camera position and orientation that I want.

What solutions have you tried so far?
I tried linking the camera to a part to make adjustments easier, but for some reason, the camera seems to have issues with viewing distances.

This is the (local) script that controls the camera. It is stored inside StarterPlayerScripts:

local Camera = workspace.CurrentCamera
local Player = game.Players.LocalPlayer
local Angle = workspace.CameraPart

wait(10) --I sometimes take a while to load in, so this wait is a safeguard.

Camera.CameraType = "Fixed"
local Position = Angle.Position
local Orientation = Angle.Orientation

Camera.CFrame = CFrame.lookAt(Position, Orientation)

what is camera.CameraType = "fixed"? use Enum.CameraType.Fixed.

can you send a screenshot of the issue ?

-tries to figure out how to make a screen recording-

try opening XBOX bar, Windows + G


The tiny white neon box in the sky is the part that the camera becomes attached to (it comes within view right before the camera position changes).

– This was reposted so this topic doesn’t get lost in the archives without being solved.