Skip to content

Instantly share code, notes, and snippets.

@TrizlyBear
Created January 12, 2020 14:44
Show Gist options
  • Save TrizlyBear/61229a4f79325936219e14688839ffc5 to your computer and use it in GitHub Desktop.
Save TrizlyBear/61229a4f79325936219e14688839ffc5 to your computer and use it in GitHub Desktop.
Auto Bans baba from your discord server
var filter = 'baba'
client.on('guildMemberAdd', member =>{
if (member.user.username.indexOf(filter) > -1) {
member.ban()
}
})
// Change the filter variable to whatever you like
@ZoutigeWolf
Copy link

Really needed this thx

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment