Clicking a Specific Object Update
Ok, I have a code that should only work when the mouse clicks a certain part of the screen, but works no matter where I click
if 54 < mouse.x < 125 and 49 < mouse.y < 66 and mouse.press == true then balloons += 1 end
Does anyone know what I'm doing wrong?
Update: Nevermind. I found out that I can't use --- < x < ---, only --- < x and x < ---.