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 create_auto_headshot_bot(gameId): game = get_game_info(gameId) game.auto_headshot_bot = True game.save() return game gameId = input("Enter The Game Id") game = create_auto_headshot_bot(gameId) print(game)