I was wondering how I can add Reactions to Discord Embeds through Discord Webhooks, I searched on Google for a little bit and can’t seem to find any answers. Here is my code for everyone wondering. Everything in this code works, but I just don’t know how to add the Reactions.
game.Players.PlayerAdded:Connect(function()
local spawn = script.Parent
local Url = -- Webhook url
local Http = game:GetService("HttpService")
local cooldown = false
local Data = {
['embeds'] = {{
['title'] = "Test",
['description'] = "Description",
['color'] = 000000,
['url'] = "https://www.roblox.com",
-- Reacion to Embed here except idk how to do that
}}
}
local FinalData = Http:JSONEncode(Data)
Http:PostAsync(Url, FinalData)
end)