Disconnnect is not a valid member of RBXScriptConnection. [FIXED but me making a typo]

   ...
	-- Tie Functions
	RunTie = RunService.RenderStepped:Connect(RenderStepped) -- Connects the functions
	DownTie = Mouse.Button1Down:Connect(MouseDown)
	UpTie = Mouse.Button1Up:Connect(PlaceWall)
	
end
	
function WallPlacement:Stop()
	if RunTie then
		RunTie:disconnect() -- Error
		DownTie:disconnect() -- Error
		UpTie:disconnnect() - Error
	end
end	

It says that disconnnect is not a valid member of RBXScriptConnection. Did I do anything wrong?

1 Like

I am pretty sure “Disconnect” is 2 n’s not 3

5 Likes

Thank you! I wasn’t looking. I’m so dumb.

1 Like