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

How to create cutscenes?

Asked by 5 years ago

I have tried Clone Trooper's plugin but it doesn't work, are there any other alternatives? For example I need something like so when I touch a block it activates the cutscene,just like Clone's Trooper's plugin.

0
His plugin does work... WideSteal321 773 — 5y
0
cutscenes are all about camera manipulation: https://developer.roblox.com/articles/Camera-manipulation GoldAngelInDisguise 297 — 5y

1 answer

Log in to vote
2
Answered by 5 years ago
Edited 5 years ago

You can use 'TweenService' to make custscenes.

Here's an example of camera tweening inside a local script.

local cam = workspace.CurrentCamera
local ts = game:GetService('TweenService')
local tween = TweenInfo.new(1, Enum.EasingStyle.Quint, Enum.EasingDirection.Out)
ts:Create(cam, tween, {CFrame = --[[CFrame of new camera position]]}):Play()
0
Wait you can actually use TweenService to tween camera position? I never knew that! SCP774 191 — 5y
0
Oh nice. HeyItzDanniee 252 — 5y
Ad

Answer this question