I want to create a bot that reads the messages of a specific text channel and speaks it you loud in a voice channel I use pyttsx3 to say it out loud locally on my laptop.
import discord
import pyttsx3
class MyClient(discord.Client):
async def on_ready(self):
print('Logged on as', self.user)
async def on_message(self, message):
if message.author == self.user:
return
messageContent = message.content
print(messageContent)
engine = pyttsx3.init()
engine.say(messageContent)
engine.runAndWait()
client = MyClient()
client.run('TOKEN')
please help me