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:
1 | local part 1 = workspace.part 1 |
2 | local part 2 = workspace.part 2 |
3 |
4 | for i = 1 , 0 , . 1 do |
5 | Camera.CFrame = Part 1. CFrame:Lerp(part 2. CFrame, i) |
6 | end |