I am having a problem running a loop that will auto update some stuff. (Like game money) It is supposed to add 100 dollars every 30 seconds. The Gui won't load, but the shell does not give me any errors. Thanks in advance!
def update():
while True:
money = money + 100
label.set(str(money))
time.sleep(30)