Untitled
unknown
python
a year ago
452 B
5
Indexable
class BotaoVerificar(discord.ui.View): def __init__(self): super().__init__(timeout=None) self.add_item(ConfigBotao4(label="Verificar", style=discord.ButtonStyle.blurple)) class ConfigBotao4(discord.ui.Button): def init(self, label, style): super().__init__(label=label, style=style) async def callback(self, interaction:discord.Interaction): verificar = interaction.guild.get_role(id_verificado)
Editor is loading...
Leave a Comment