Connect is not a valid member of RBXScriptSingal

Hi everyone, I am having an issue with one of my scripts.
I am making a GUI tween and I am using the Completed event to detect when the tween has stopped.

For some reason I keep getting this error: Connnect is not a valid member of RBXScriptSignal

The code below is mine.

			play.Completed:Connnect(function()
				vGui.Enabled = false					
			end)	

It did work before but now it’s not working and I don’t know why.

2 Likes

You have 3 n’s, that is all to it.

8 Likes

To clarify what @sjr04 said. You wrote Connnect() instead of Connect.

1 Like

Ohh, I didn’t notice that lol. Thanks so much that solved it lol.

1 Like