You can't use $Clipboard unless your using $Clipboard as your Constant Holding Variable. And you would use "=" instead of "Contains", it's easier if your comparing $Clipboard against another Constant.
CODE
constants
ClipBoard = {Null}
Test1 = SomeText
Test2 = SomeOtherText
Test3 = TotallyFalse
end
SetClipboard $Clipboard
Set $Clipboard,$Test3
IF $ClipBoard = $Test1 or $Clipboard = $Test2
// True
GetClipboard $ClipBoard
PasteClipboard $ClipBoard
Else
// False
SayPaste $Clipboard
End
Saypaste may not work with your Application, Keys seems to be the general usage for most other applications other then Turbine type Games. Now, the Second line: "Set $Clipboard,<Value>", since it's set for test3 it's gonna return a False, if you have it set for test1 or test2 it'll be True.. "Doh, right..

"