I want to know how to make cut scenes for my games but i literately have no idea how to start on this. Im not asking for a script i just want a link or something of where i should go to learn this.
You can use the lerp function to lerp the player's camera cframe from 1 part to another part. You can make pretty sick cut scenes with this
Link: https://developer.roblox.com/articles/Lerp
Example:
local part1 = workspace.part1 local part2 = workspace.part2 for i = 1, 0, .1 do Camera.CFrame = Part1.CFrame:Lerp(part2.CFrame, i) end