🕒
Activity
🎮
Browse
📰
Forums
📖
Docs
🔎
Search
Login
Login
Button not being pressed
Root
/
Programming Questions
/
[.]
Retrogamer123
Created:
~8 years ago
Retrogamer123
#1
How would I detect if a button is not being pressed, and do something if it isn't?
Minxrod
#2
IF !(BUTTON() AND #A) THEN blah
The ! Makes true false and false true, it inverts it. So what would normally be executed when the button was a will now only execute when it ISNT a.