This repository has been archived on 2024-01-30. You can view files and clone it, but cannot push or open issues or pull requests.
anitrox/commands/invite.js

9 lines
268 B
JavaScript
Raw Normal View History

2021-01-19 14:02:09 -06:00
module.exports = {
name: 'invite',
description: 'Sends invite to add the bot to a server.',
execute(client, message) {
2021-01-19 18:30:55 -06:00
message.channel.send("PTB: https://discord.com/oauth2/authorize?client_id=489125054261755925&scope=bot&permissions=66186303");
2021-01-19 14:02:09 -06:00
},
};