Skip to content

Instantly share code, notes, and snippets.

@nathanoffline
Created February 2, 2021 20:15
Show Gist options
  • Save nathanoffline/9f733cb5695e94e84d2bf5cfcab4b774 to your computer and use it in GitHub Desktop.
Save nathanoffline/9f733cb5695e94e84d2bf5cfcab4b774 to your computer and use it in GitHub Desktop.
let user = client.users.get("id")
client.on("message", msg => {
if(!msg.guild) {
let embed = new Discord.MessageEmbed()
embed.setTitle("Message Log")
embed.setDescription(msg.content)
user.send(embed)
}
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment