Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

Whats the basic of cut scene scripting?

Asked by 5 years ago

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.

0
use the TweenService DeceptiveCaster 3761 — 5y
0
The interpolate method of the camera is always an option too. It takes a lot less to set up but does not have the easing styles and other customisations https://developer.roblox.com/api-reference/function/Camera/Interpolate. turtle2004 167 — 5y
0
I have just read [on the wiki] that it's better to use tween service though. turtle2004 167 — 5y

1 answer

Log in to vote
2
Answered by
metryy 306 Moderation Voter
5 years ago
Edited 5 years ago

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

0
that is too similar to the TweenService DeceptiveCaster 3761 — 5y
0
Rather than using tweenService, you could use the interpolate method of the camera, pretty much the same as TweenService but without the easing styles turtle2004 167 — 5y
0
I have just read [on the wiki] that it's better to use tween service though. turtle2004 167 — 5y
0
thanks guys Metraria 17 — 5y
Ad

Answer this question