basically, I have some code like this:
while True:
number = int(len(oilrigs)) * 49
number += money
time.sleep(1)
In front of this I have a start up screen. However because of this while true loop, it blocks it from ruing the actual start up screen. Instead, it just displays this.
