By connection error, im assuming you mean the little plug icon that moves.
If so that is usually when an infinite for loop in a function hasnt got a wait after the code...eg it looks like;
For( ; ; )
{
Code for stuff
}
When it should be
For( ; ; )
{
Code for stuff
Wait 0.5;
}