I got this:
if question2 == "1":
print(Fore.YELLOW + 'Starting....')
time.sleep(2)
print(Fore.GREEN + 'Started Task [1]!')
system("title " + f"Converse Bot V.1.0 User: {user} [Running Task[1]]")
p1 = Process(target=atc)
p1.start()
question 2 is a normal input where you can enter 1 or 2 after entering 1 it should print this and start the thread in python file it works fine but after compiling to exe it just goes to " system("title " + f"Converse Bot V.1.0 User: {user} [Running Task[1]]")" that step and then restarts with the first step ( Saying Hello )
Please help me