...
-- 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?