Hello there I’m trying to achieve a cinematic camera. The ones that move slightly left to right. Sort of how people make a mouse to move the camera I want to do that but automatically.
You can utilize tweenservice for this. Make sure that you have your camera type set to scriptable, and you create a folder in workspace with invisible parts that will represent camera start/end positions. From there you can create tweens that tween the CFrame of the camera to the parts in the workspace in a loop, to do it automatically.
Here’s an example function for Tweening the camera to parts (where point is the part):
local function TweenCameraPosition(Point,Speed)
Tween:Create(Cam, TweenInfo.new(Speed, Enum.EasingStyle.Linear),{CFrame = Point.CFrame}):Play()
end