GUIs are not appearing

So, i’m making a cutscene for my new game and i want to add like a little cut.
That little cut is a gui with a black frame.
The script works, but the gui doesn’t appears in the scene.

This is the part of the script.

wait(cutsceneTime + 10)
	black.Visible = true -- this is the gui
	thunder.Playing = true -- this is the thunder that should appear durning the black
	if thunder.Playing == false then
		black.Visible = false
		wait()

Listen carefully to undestand when the black should appear.

Any help appreciated

robloxapp-20200902-1555371.wmv (3.6 MB)

1 Like

Try doing thunder:Play() instead of thunder.Playing. The Playing property is read only.

1 Like

Are the guis that the black gui is inside of Visible too?

No, the playing property is not a read only

I don’t think you can just do black.Visible
Do black.BackgroundTransparency = 0

I tried it , but doesn´t work either :confused:

It’s inside an enabled screen Gui