'Discord API. Bot don't see message from other users

I'm trying to make a selfbot for Discord and cant see message content from other users.

async def on_message(message):
    print(f'USER - {message.author} texted - {message.content}')

Results if I send message in channel:

USER - User1 texted - Hello World!

If User2 printed same string, result different:

USER - User2 texted - 

Why i dont see message from other users and how i can solve this problem? Can someone help me?



Solution 1:[1]

Selfbots are against ToS, but if you don't care, use discord.py-self. It's the same as being a bot except some features don't work because well, only bots can use them.

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1 Vinium