Discord Webhook Logger
#ff6a2c → 16738860
VT
Vangtech LoggerBOT
Vangtech NZ
Vangtech Log
Player John Doe connected from 123.45.67.89
Vangtech NZ • now
Live embed preview
Webhook Logger
server.lua — PerformHttpRequest embed
discord_logger.lua
Lua--
-- Vangtech NZ — Discord Webhook Logger
-- Generated: Wed, 09 Sep 2026 06:05:41 GMT
-- https://vangtech.nz
local WEBHOOK = 'https://discord.com/api/webhooks/xxx/yyy'
function SendLog(message)
local embed = {{
["title"] = "Vangtech Log",
["description"] = message,
["color"] = 16738860,
["footer"] = { ["text"] = "Vangtech NZ • " .. os.date("%X") },
["author"] = { ["name"] = "Vangtech NZ" }
}}
PerformHttpRequest(WEBHOOK, function() end, 'POST', json.encode({
username = "Vangtech Logger",
embeds = embed
}), { ['Content-Type'] = 'application/json' })
end