[Solved] how do i send two messages in one? [closed]


You Could Use \n To Make a New Line

or

You Can Use this code to make the text a link

const embed = new Discord.MessageEmbed()
  embed.setTitle("BOT INVITE LINK")
  embed.setColor("BLACK")
  embed.setURL("INVITE LINK")
  embed.setDescription("**Click On The Blue Title Above to Invite BOT to Your Server :D**")
  
  message.channel.send(embed)

solved how do i send two messages in one? [closed]