How do I format like this on webhook?

I want to format it like this on my webhook, but I don’t know how.

https://developer.roblox.com/en-us/api-reference/class/HttpService
https://support.discord.com/hc/en-us/articles/228383668-Intro-to-Webhooks

Hey Ins! There are a few quick steps required to make a Discord webhook. Keep in mind that you must be on a PC/Laptop to make a webhook. So here are the steps:

1 - Edit the channel you want the webhook in
2 - Select the category “Integrations”
3 - Select “Create Webhook”
4 - Once created, you can edit the webhook name and profile picture
5 - Copy the Webhook URL
6 - Go to Discohook – the main site to make webhooks
7 - Paste the Webhook URL into the text box at the top
7 - Click the “Embed 1” button

You can then edit the webhook from there. Please let me know if you need any more help with your webhook. :slightly_smiling_face:

1 Like

Unfortunately, Discord’s Webhook tutorial isn’t too great. The best way to make Webhooks nowadays is using Discohook.

Interesting - haven’t heard of this one before. Sounds interesting as a tool, but if you’re doing it from Roblox, you’ll want to automatically post requests to Discord through your scripts.

Related: Discord Integration: A guide on using Discord through Roblox [UPDATED]

1 Like

How do I make like this on roblox studio?

I know I am super late to this but the script below is how to do this.

local Data = {
[“embeds”] = {
[“title”] = “”,
[“description”] = “”,
[“color”] = 16711680,
[“footer”] = {
[“text”] = “”
},
[“timestamp”] = os.date(“!%Y-%m-%dT%H:%M:%SZ”)
}
}

local Data = {
[“embeds”] = {
[“title”] = “”,
[“description”] = “”,
[“color”] = 16711680,
[“footer”] = {
[“text”] = “”
},
[“timestamp”] = os.date(“!%Y-%m-%dT%H:%M:%SZ”)
}
}

Also the quotation marks on line where it shows timestamp will error so you need to replace the quotation marks with some new ones
local Data = {
[“embeds”] = {
[“title”] = “”,
[“description”] = “”,
[“color”] = 16711680,
[“footer”] = {
[“text”] = “”
},
[“timestamp”] = os.date(“!%Y-%m-%dT%H:%M:%SZ”)
}
}