Quote: "I don't know how to do this because putting two "and" doesn't work. Any help appricated"
What exactly does't work. Your if tests work fine for me. Here's the complete runnable code I used:
AimedDown = 1 ` change this to 0 to see the other case
stimer = timer()-100
do
cls
if MouseClick() = 1 and stimer<timer() and AimedDown = 0 then text 20, 20, "line 1"
if MouseClick() = 1 and stimer<timer() and AimedDown = 1 then text 200, 20, "line 2"
loop
Keep left-clicking the mouse to see the output.
I suspect your problem is somewhere else.
Edit Actually, Lucas Tiridath's version is better - but again there's nothing wrong with two or more "and"s.