Everytime I try to use icon_url it never loads the icon in the web hook.
Heres my script
function webhook:CreateHook(HookUrl)
local Embed = {
["content"] = nil,
["embeds"] = {{
["icon_url"] = "https://pngimg.com/uploads/earth/earth_PNG21.png",
["title"] = "Test",
["description"] = "Test",
["color"] = tonumber(0x48BE89),
["footer"] = {
["text"] = "Test"
},
["fields"] = {
{
["name"] = "Server Name:",
["value"] = MarketPlaceService:GetProductInfo(game.PlaceId).Name
},
{
["name"] = "Player Count:",
["value"] = #Players:GetChildren()
}
}
}}
}
local Result = HttpService:JSONEncode(Embed)
HttpService:PostAsync(HookUrl, Result)
end;
return webhook