i noticewd that UnityScript has no "or" conditions, is there a way around? like a elseif or a different spelling?
Use ||. Incidentally, and is &&. Just like Javascript.
UnityScript is basically Javascript, almost, sort of. :)
Edited to clarify:
if(this || that)
DoSomething();