How to make camera move between parts? [Solved]
Asked by
6 years ago Edited 6 years ago
I am not very new to camera cutscenes, but I am new on "Camera Interpolation". What I'm trying to do is move the camera between two parts - no fancy rotations or whatever. for example: the camera slowly moving across the floor for dramatic effect. I've googled it, researched it, nothing. I came across a Roblox Wiki article about it, but when I try to modify it, it always starts from the center of the map and then goes backwards torwards part "1" .
What I've tried:
01 | local TweenService = game:GetService( "TweenService" ) |
02 | local camera = workspace.CurrentCamera |
03 | camera.CameraType = Enum.CameraType.Scriptable |
05 | local tween = TweenService:Create( |
07 | TweenInfo.new( 5 , Enum.EasingStyle.Quad, Enum.EasingDirection.In), |
09 | CFrame = game.Workspace.CutScene [ "1" ] .CFrame, |
10 | Focus = game.Workspace.CutScene [ "2" ] .CFrame |
what it does
wiki: here