You aren't calling the procedure. Your script sets the mouse speed and doesn nothing else.
Simba Code:
program new;
procedure whatever; //this will not run unless you tell it to below
begin
//stuff
end;
begin
whatever(); //you have to do this
//this is what will happen when you run the script
end.// <-- the one with the period
It's usually a good idea to add some writeln's when you're starting a new script, e.g.
Simba Code:
procedure clickThing();
var
x, y: integer;
begin
if findColor(x, y, ...) then
begin
writeln('Found color at [', x, ', ', y, ']');
//other stuff
end else writeln('Did not find color');
end;
also you really don't need SRL-6 for a RSPS