---@diagnostic disable: undefined-global characters = {"Cobalt Phantom", "Emerald Venom", "Golden Radiance", "Crimson Reaper"} player1Character = "" player2Character = "" function Setup() print(characterSelectType) end function Update() local fontFile = "assets/fonts/OpenSans-Bold.ttf" local fontSize = 50 local text = "Character Select" local textWidth = getTextWidth(fontFile, fontSize, text) local x = (WIDTH - textWidth) // 2 local y = 20 queueTextForRender(text, fontFile, x, y, fontSize, 255, 255, 255, 255) end