Cutscene Editor - Make easy cutscenes!

Introduction

Bonjour! I am Beez_up, and i am here to introduce the new Cutscene Editor.
This plugin is really powerful, simple and free to use!


Showcase

How it looks like :

Cutscene


In action :

Features

The plugin have a lot a features! You can edit each waypoint’s easing style and time.
I will be uploading a new update which includes :

  • You will be able to add a custom skip button,
  • All easing directions will be available In/Out/InOut,
  • And you will be able to loop your cutscene a certain amount of time!

If you are good at coding, you can use the plugin to get the cframes and the seconds. Heres an exemple of a table made by the plugin :

local data = {
{CFrame = CFrame.new();
Seconds = 3;
Style = Enum.EasingStyle.Back -- Exemples
}
{}...
}

To loop into that table all you have to is this :

for i,v in pairs(data) do
	tween:Create(
		camera,
		TweenInfo.new(
		v.Seconds,
		v.Style,
		Enum.EasingDirection.Out,
		0,
		false,
		0
	),
	{CFrame = v.CFrame}
		):Play()
		wait(v.Seconds)
end

But don’t worry you don’t have to do anything of this if you don’t code. The plugin do it for you!

How to take it?

https://www.roblox.com/library/5175976365/NEW-Cutscene-Editor-V2
The plugin is completly free and safe!
Post your feedback on comment section!

Thanks for reading :smiley:

54 Likes

After testing this out for a good 10 minutes, I can say that it’s very easy to use and worth it to get. It’s really helpful and i’ll be using this a lot. It’s 100% safe and useable. :+1:

8 Likes

While I can say that this plugin sounds very nice and easy, we should be able to change the EasingDirection to how we want, instead of just EasingDirection.Out. I can see myself having to make cutscenes with something different because of this.

4 Likes

is part stepped broken? or something am I doing wrong, I changed nothing in script.

when I go to preview it works flawlessly
when I press play in studio the camera goes back to player position in-between every waypoint change

4 Likes

Same here, mine studio does that too for some reason

3 Likes

@Potatoegy @CrillicD Sorry for that i am fixing it, and adding a lot of more features!

  • Easing Directions. @GalaxyGourmet
  • Dialogs (Typewriter)
  • Transitions
  • Cutscene Loop
  • More trigger Types (Player Died,Executable,Buttton Click)
  • Cutscene Loops
    And MUCH MORE!
    Thanks for your feedback!
4 Likes

I will try that out later today
Thanks for making this plugin, tho

4 Likes

I’ll give it a run, looks like it would be really helpful!

2 Likes

Looks really cool, but in your plugin does it have an option allowing to have onscreen text whilst controlling options for the custcene?

2 Likes

You’d probably have to program that yourself unless they add that as a feature.

2 Likes

Yeah probably, but I would definitely use it as it would make developing easier.

3 Likes

I have the same problem, and I am really looking forward to having text with the cutscene!

3 Likes

I just want to use this already. Keep up the good work!:sunglasses::smiley:

1 Like

How are the trigger types coming? Are you still working on this?