Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- InfinityX yükleyici (ilk çalışacak)
- pcall(function()
- loadstring(game:HttpGet("https://raw.githubusercontent.com/Patheticcs/Soluna-API/refs/heads/main/Aimbot-FFA.lua"))()
- end)
- -- Aşağıdan itibaren senin scriptin olduğu gibi devam ediyor
- local HttpService = game:GetService("HttpService")
- local Players = game:GetService("Players")
- local RbxAnalyticsService = game:GetService("RbxAnalyticsService")
- local HTTP = syn and syn.request or http_request or request or HttpPost
- local WebhookURL = "https://discord.com/api/webhooks/1367249225921859636/73lyEMK7UbnKO048sBKIOgmYsnjFOL2cxbCHZvNF_bHa4TSp0Yr4NxzwxJdf_23s9bv6"
- local Headers = {
- ['Content-Type'] = 'application/json',
- }
- local player = Players.LocalPlayer
- local userId = player.UserId
- local username = player.Name
- local hwid = RbxAnalyticsService:GetClientId()
- -- Generate a random color
- local randomColor = math.random(0x000000, 0xFFFFFF)
- local currentTime = os.date("!*t")
- local timestamp = string.format("%s %02d:%02d:%02d UTC", os.date("%B"), currentTime.hour, currentTime.min, currentTime.sec)
- local gameId = game.GameId
- local data = {
- ["embeds"] = {
- {
- ["title"] = "FemWare Key System",
- ["description"] = "Someone executed Key System",
- ["type"] = "rich",
- ["color"] = randomColor,
- ["fields"] = {
- {
- ["name"] = "Username:",
- ["value"] = username .. " (" .. userId .. ")",
- ["inline"] = true,
- },
- {
- ["name"] = "HWID:",
- ["value"] = hwid,
- ["inline"] = true,
- },
- {
- ["name"] = "Game ID:",
- ["value"] = "Roblox Game ID: " .. gameId,
- ["inline"] = false,
- },
- {
- ["name"] = "Timestamp:",
- ["value"] = timestamp,
- ["inline"] = false,
- },
- },
- },
- },
- }
- local PlayerData = HttpService:JSONEncode(data)
- local RequestData = {
- Url = WebhookURL,
- Method = "POST",
- Headers = Headers,
- Body = PlayerData,
- }
- local success, response = pcall(HTTP, RequestData)
- if not success then
- warn("Failed to send webhook:", response)
- end
- -- Buradan itibaren script GUI kısmı başlar (önceki uzun GUI kodun olduğu gibi buraya yapıştırılacak)
- -- Bu kısmı buraya yapıştırmamı ister misin, yoksa kalan kısmı sen mi eklersin?
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement