A more understandable version of the title, I would like to make a script that i could get data from discord and send it to roblox, rather than roblox sending data to discord. ex : i say "!shout Hello, this is a message from discord" in the discord chat and in all of the ingame servers it will create a Message that says "Hello, this is a message from discord".
I'm not asking for a script, I would appriciate it if you did though, I just want somewhere to start such as a devforum or roblox wiki or youtube link. Thank you
I think what your thinking of is a webhook, discord adds a blue BOT to it for whatever reason, yes this is possible normally you would directly use send to discord but discord deined roblox's IPs to use the webhooks because of rate limit abusing. However someone made a proxy server that follows the rate limits, so request https://discord.osyr.is, credit to this post. First you have to make a webhook for the channel, you can learn to do that here. After that use this script you will have to edit some parts which I say in the script.
local HttpService = game:GetService("HttpService") local webhook = "https://discord.osyr.is/api/webhooks/" -- before the " copy the part from where this starts (the / in webhooks) and to the end local webhookdata = "" --add what you want it to say inside the "" HttpService:PostAsync(webhook,webhookdata)