OK.....
I'm really not sure if this is going to work or not - I've never played Fallin Furni before (or Habbo Hotel), and I made this script in around 5 minutes....
I assume the Flash Games don't have anything like antiban, so I've just used ClickMouse.
I haven't tested it - please tell me whether it worked or not. It compiles fine.
Just fill in the color's in the constants. To stop the script, press [ and ] at the same time.
SCAR Code:
program FallinFurni;
const
color1 = 20938;
color2 = 1809357;
var
x, y, w, h: integer;
procedure ClickJustBelow;
begin
ClickMouse(x, y + 25, True);
Wait(500);
end;
begin
GetClientDimensions(w, h);
repeat
if ((FindColorTolerance(x, y, color1, 0, 0, w, h, 10)) or (FindColorTolerance(x, y, color2, 0, 0, w, h, 10))) then
ClickJustBelow;
until not(IsKeyDown('[') and IsKeyDown(']'));
end.