Ф-ция создана, но её вызова я не вижу.
class MainScreen(Screen):
def __init__(self):
super().__init__()
self.name = 'Main' # setting the screen name value for the screen manager
# (it's more convenient to call by name rather than by class)
main_layout = FloatLayout() # creating an empty layout that's not bound to the screen
self.add_widget(main_layout) # adding main_layout on screen
title = Label(text='ABOBA',
bold=True,
pos_hint={'center_x': .5, 'center_y': .9})
# Button to get to the 2nd screen
three_players = Button(text='3 игрока',
bold=True,........
Я уё сюда впихнул.