Does discord webhook allowed in Roblox?

  1. What do you want to achieve?
    I want to know my game’s join logs and admin command logs in Discord
  2. What is the issue?
    Roblox moderator closed my game for adding discord webhook that show Player join logs in Discord but I still see many tutorial in this forum that we can use discord webhook. So I want to know that can I use discord webhook?

This is my first topic here, I am sorry if I did anything wrong in this forum.

Sorry, but this is the wrong category. Please migrate to another category.

There are several reasons that Roblox Moderator closed your game.

Two main reasons are:

  • Your game sent too many requests. It is not allowed/supposed to.

  • Your webhook contained inappropriate words or something that broke Roblox’s ToS.

To avoid these problems, I highly recommend you to use Datastores, they are to store any logs that are being made in a game.

3 Likes

Discord has already once completely blacklisted Roblox servers from sending requests to it. Just use a real logging service, it’s a quick search away.

2 Likes

Or, you could do what I did and set up a discord bot to log on discord without sending too many requests to discord.

1 Like

If you have too many requests, what I have done is added each chat message to an array, and when the array is at like 50 messages, send that to discord and then clear the array and start from scratch.

1 Like

Discord is not a logging service. If it ever becomes a problem for them again, they will block Roblox requests altogether and your code will hard error. Use a real logging service.

1 Like