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.
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()