Sending an image with webhooks help

Would it be possible to send gui obejcts wth webhooks as an image?

local http = game:GetService("HttpService")

game.ReplicatedStorage.Remotes.Upload.OnServerEvent:Connect(function(plr)
	local Data = {
		["content"] = script.Parent.Main.AdSection.Ad1
	}
	Data = http:JSONEncode(Data)

	http:PostAsync("https://discord.com/api/webhooks/webhook", Data)
end)
1 Like

I don’t believe so, the engine wouldn’t be able to do that

No, you can’t. What you could do would be to set up an external server that deserializes the GUI, which converts it to an image. I think it would be a challenge, but good luck if you want to attempt it