nyx/commands/Owner/cls.js
2021-09-06 18:38:25 +08:00

11 lines
339 B
JavaScript

const { Client, Message, MessageEmbed } = require("discord.js");
module.exports = {
name: "cls",
Owner: true,
run: async (client, message, args) => {
message.channel.send(
"**\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n**"
);
},
};