I am trying to make cutscenes but I just can’t figure out a way to play a cutscene and move it to the next camera part without any kind of easing style (linear, elastic, etc.) basically an instant camera change from one part to other like we see in movies or tv shows.
How can I achieve this. Sorry if it’s a really basic thing to do, I am kinda new to scripting these cutscenes and camera manipulation stuff.
local Player = game.Players.LocalPlayer
local TouchPart = workspace.Part -- the part that wants to be touched
local CameraPart = workspace.CameraPart -- the part that you want the camera to be at
local Camera = workspace.CurrentCamera
TouchPart.Touched:Connect(function(Hit)
if Hit.Parent:FindFirstChild("Humanoid") and Hit.Parent.Name == Player.Name then
Camera.CFrame = CameraPart.CFrame
end
end)
I’m not going to write your entire game for you, but this should work. I suggest having a basic understanding of scripting to do something like this