Update Example.lua

This commit is contained in:
Norberto A 2020-02-28 21:18:52 +00:00 committed by GitHub
parent 0eab38f11d
commit 0db890bb95
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 18 additions and 1 deletions

View File

@ -1,4 +1,21 @@
-- Script type: Script
-- Writen by github.com/Limesey, @Norbunny on Roblox.
-- SOONTM
local discord = require(script.Parent.Discord)
local message = discord.newMessage()
e = message.addEmbed("Title", "Description")
e.addField("Name", "Value")
e.setAuthor("Norbunny","https://www.roblox.com/headshot-thumbnail/image?userId=76860346&width=420&height=420&format=png", "https://www.roblox.com/headshot-thumbnail/image?userId=76860346&width=420&height=420&format=png")
e.setThumbnail("https://www.roblox.com/headshot-thumbnail/image?userId=76860346&width=420&height=420&format=png")
e.setImage("https://www.roblox.com/headshot-thumbnail/image?userId=76860346&width=420&height=420&format=png")
e.setTimestamp()
e.setFooter("Developed by Norbunny", "https://www.roblox.com/headshot-thumbnail/image?userId=76860346&width=420&height=420&format=png")
e.setColor(Color3.new(0, 255, 0))
local success, err = discord:send(message)
if(not success) then
warn(err)
end