79582956

Date: 2025-04-20 01:54:07
Score: 2
Natty:
Report link

The problem is this ->

client.on('message', (message) => { ... }

there is no event name called "message". change to this ->

client.on('messageCreate', (message) => { ... }
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Adam The Noob