Ok Heres the code
Rem Guessing Game
sync on
repeat
Input "Welcome To My Guessing Game!, Enter A Number ", guess
numofguesses = 3
number = 65
if guess = number then print "You Are Right! "
if guess < number then print "Too Low ", numofguesses - 1
if guess > number then print "Too High, You Have ", numofguesses, " Guesses Left"
Until Keystate(17) = 1
Ok Everything works good but on the greater than it will minus the number of guesses but when i do it again it stays at 2 wat command will update it so it shows current guesses