I had it finding the banker perfectly then unfortunatly misclicked and exited simba without saving the script 


Now I can't seem to get it to find a banker again.
It used to go straight to the booth/banker but now it likes to move around at other gray colors. I can't remember if I was using FindObjCustom before, is there another option? It also can hover over the banker but doesn't seem to recognize uptext or something and moves on to keep trying. Also lots of errors saying
'Warning! You passed a wrong ys to a finder function: -5. That is below 0, thus out of bounds. Setting the value to 0 for now.
Warning! You passed a wrong ys to a finder function: -5. That is below 0, thus out of bounds. Setting the value to 0 for now.
Successfully executed.'
Simba Code:
Procedure Bank;
var
SeX, SeY: Integer;
Begin
If FindObjCustom(SeX, SeY, ['Use','Talk'], [5724255, 5000531], 5) Then
Mouse(SeX, SeY, 5, 5, False);
WaitOptionMulti(['Use-qu', 'Bank'], 200)
End;