Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

Discord Webhooks not working ingame?

Asked by 1 year ago
Edited 1 year ago

They work in roblox studio perfectly, sending through the feedback to discord but ingame (In Roblox, not in Roblox Studio) it doesn't seem to send through. Can someone help me?

I have tried using different URLs and have enabled HTTP services

1 answer

Log in to vote
1
Answered by 1 year ago

It's because Discord banned using webhooks in Roblox. If the webhook request came from Roblx, Discord will reject it. For this scenario, you must use a proxy. This thread explains it better. I highly recommend using this as your proxy.

local webhook = "https://discord.com/api/webhooks/xxxxxxxxxx/xxxxxxxxxx" -- this won't work anymore
local proxyWebhook = "https://hooks.hyra.io/api/webhooks/xxxxxxxxxx/xxxxxxxxxx" -- this converted webhook will DEFINITELY work!
Ad

Answer this question