Initial Set-up

Placing the Items Properly

Now that you've installed the Module, you should find two items under the folder: SimpleCutscenes and CutsceneClient. They must be placed properly in order to work. Their should be placed as followings:

SimpleCutscenes : Anywhere appropriate. (Recommended: ServerScriptService )

CutsceneClient : StarterPlayer -> StarterPlayerScripts

(TIPS: Placing anywhere under them will work!)

Binding the RemoteEvent

In order to keep the Module working, a RemoteEvent instance must be bound to both the SimpleCutscenes and CutsceneClient module. Here's a tutorial on how to do it:

  • First, create a RemoteEvent and place it under somewhere where both the Server-side and the Client-side can access (Recommended: ReplicatedStorage)

  • Under SimpleCutscenes, you should see a ObjectValue called “REMOTE_EVENT”, change the value to the RemoteEvent you just created.

  • Now, open CutsceneClient, and find a line like this (the reason why we are not using a ObjectValue is to prevent potential client exploitation):

local REMOTE_EVENT = nil
  • Change the value to the RemoteEvent you just created.

And you are done with it! Now, let’s move on to do the scripting!

Last updated