🧰Exports

Simple Exports

  • Can be used for clients or servers

exports['kc_logger']:DiscordLog({
    webhook = WEBHOOK_URL, 
    title = '📥 Join',
    embeds = '**'..gameName..'** New boarding to the city.\n\n`👥`**Nama: '..gameName..'**\n`🔢` **Server ID:** `'..src..'`\n`💬` **Discord:** <@'..discordId..'> (||'..discordId..'||)\n`🎮` **Steam Hex: **`'..identifiers..'`',
    color = '#3AF241'
})
Code Block
Value
Explanation

webhook

URL

Your discord webhook URL

title

string

Title to order embeds

embeds

string

Message content

color

string

Color for message

Advanced Exports

  • Can be used for clients or servers

exports['kc_logger']:DiscordLog({
    webhook = WEBHOOK_URL, 
    name = 'Kucluck Logger',
    content = 'This is a content for logger',
    title = '📥 Join',
    embeds = '**'..gameName..'** New boarding to the city.\n\n`👥`**Nama: '..gameName..'**\n`🔢` **Server ID:** `'..src..'`\n`💬` **Discord:** <@'..discordId..'> (||'..discordId..'||)\n`🎮` **Steam Hex: **`'..identifiers..'`',
    color = '#3AF241'
})
Code Block
Value
Explanation

webhook

URL

Your discord webhook URL

name

string

Name log sendder

content

string

Message content

title

string

Title to order embeds

embeds

string

Message content embeds

color

string

Color for message

Last updated