Skip to content

Instantly share code, notes, and snippets.

@VLTNOgithub
Created August 25, 2020 13:01
Show Gist options
  • Save VLTNOgithub/3e3d065b19fd38efb0ea576b3c4b076c to your computer and use it in GitHub Desktop.
Save VLTNOgithub/3e3d065b19fd38efb0ea576b3c4b076c to your computer and use it in GitHub Desktop.
const { execute } = require("./site");
module.exports = {
name: 'ping',
description: 'Replys with pong',
execute(message, args){
if(message.member.roles.cache.has('640298337635139624')){
message.channel.send('pong');
} else {
message.channel.send("You don't have the permissions to run this command")
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment