I have fixed my problem!!!!!
With a Pen, Clipboard, and peice of paper I thought how my program works and decided I needed to convert player 2s meters to something that closely resembles player 1s meters. All I had to add was add
if Meters(2) >= 600 then Meters(3) = 100
if Meters(2) >= 500 and Meters(2) < 600 then Meters(3) = Meters(2) - 300
if Meters(2) >= 400 and Meters(2) < 500 then Meters(3) = Meters(2) - 100
if Meters(2) >= 300 and Meters(2) < 400 then Meters(3) = Meters(2) + 100
if Meters(2) >= 200 and Meters(2) < 300 then Meters(3) = Meters(2) + 300
if Meters(2) >= 100 and Meters(2) < 200 then Meters(3) = Meters(2) + 500
and Add another variable to my Meters array and change under the Player 2's firing control
If BulletX(2) < Meters(3)
BulletX(2) = BulletX(2) - 1
BulletY(2) = BulletY(2) + 2
endif
with the Meters(3) instead of Meters(2).
Im glad I payed attention in Math Class