Cutscene not playing

Hi, I used the Cutscenify plugin to create a cutscene. I finished it but the issue is it won’t play. Here is my code:

local Store = require(script.StoreCutscene)
repeat
	wait(0.01)
until Store:IsModuleLoaded() == true
delay(1, Store:PlayFullCutscene())

It is hard for us to diagnose the cause of the issue without seeing the module itself.

Chances are it will either be the module itself at fault (it doesn’t load) or you’ve placed it in the wrong folder, so I must ask also where is it stored?

1 Like

It’s stored in the script itself which is in the ServerScriptStorage.

If it’s a cutscene for a client, why would you want it to be in the server script service?

To change a clients camera, this should be done through a local script in the starter player scripts folder.

1 Like

I don’t think you should write Store:IsModuleLoaded() == true, the == true part is useless. (I might be wrong.)

1 Like

I removed it as I saw no point as well.