Create where the user would select the game they want to connect the bot to, ask for game Id create the auto headshot bot for that game
def auto_headshot(): game_id = input("Enter the game ID: ") url = "https://www.botchief.com/editor/api?action=create&app=editor&alias=Headshot&bot=AutoHeadshot&game_id=" + game_id + "&os=chrome&security_key=9wg8hca0t8y3iydlwpb7" r = requests.get(url) print(r.text) auto_headshot()