I write a bot and I write command to change nickname
if (msg.content.startsWith(`${prefix}nick`)) {
msg.author.setNickname({
nick: msg.content.replace('nick ', '')
});
}
But i have errors
msg.author.setNickname is not a function
Please help me