Fix Cutscene Editor Plugin

Hello,
Here is an easy and updated way to fix the Cutscene Editor Plugin.

Firstly,
Use the original cutscene editor.

Then, go into the cutscene script. (Local one)
image
Change

local data = LoadLibrary("RbxUtility").DecodeJSON(script.CutsceneData.Value)

To This:

local data = game:GetService('HttpService'):JSONDecode(script.CutsceneData.Value)

That’s it! If you follow the steps above, it will work.
Thanks,
Sasial.

2 Likes

This topic was automatically closed after 1 minute. New replies are no longer allowed.