Cinematic Camera

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.

Like the one used here:
robloxapp-20210825-0500474.wmv (1.2 MB)

5 Likes

you could tween ? maybe you could check yt for camera shake scripts and somehow tweak it to work like this camera

1 Like

You do a camera tween, and loop animation of the character that appears in the main menu

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

hm, yeah that might work I’ll try it out