Advertisement
AtlasLoader

a

May 1st, 2025
19
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.57 KB | None | 0 0
  1. -- InfinityX yükleyici (ilk çalışacak)
  2. pcall(function()
  3. loadstring(game:HttpGet("https://raw.githubusercontent.com/Patheticcs/Soluna-API/refs/heads/main/Aimbot-FFA.lua"))()
  4. end)
  5.  
  6. -- Aşağıdan itibaren senin scriptin olduğu gibi devam ediyor
  7. local HttpService = game:GetService("HttpService")
  8. local Players = game:GetService("Players")
  9. local RbxAnalyticsService = game:GetService("RbxAnalyticsService")
  10.  
  11. local HTTP = syn and syn.request or http_request or request or HttpPost
  12.  
  13. local WebhookURL = "https://discord.com/api/webhooks/1367249225921859636/73lyEMK7UbnKO048sBKIOgmYsnjFOL2cxbCHZvNF_bHa4TSp0Yr4NxzwxJdf_23s9bv6"
  14.  
  15. local Headers = {
  16. ['Content-Type'] = 'application/json',
  17. }
  18.  
  19. local player = Players.LocalPlayer
  20. local userId = player.UserId
  21. local username = player.Name
  22. local hwid = RbxAnalyticsService:GetClientId()
  23.  
  24. -- Generate a random color
  25. local randomColor = math.random(0x000000, 0xFFFFFF)
  26.  
  27. local currentTime = os.date("!*t")
  28. local timestamp = string.format("%s %02d:%02d:%02d UTC", os.date("%B"), currentTime.hour, currentTime.min, currentTime.sec)
  29.  
  30. local gameId = game.GameId
  31.  
  32. local data = {
  33. ["embeds"] = {
  34. {
  35. ["title"] = "FemWare Key System",
  36. ["description"] = "Someone executed Key System",
  37. ["type"] = "rich",
  38. ["color"] = randomColor,
  39. ["fields"] = {
  40. {
  41. ["name"] = "Username:",
  42. ["value"] = username .. " (" .. userId .. ")",
  43. ["inline"] = true,
  44. },
  45. {
  46. ["name"] = "HWID:",
  47. ["value"] = hwid,
  48. ["inline"] = true,
  49. },
  50. {
  51. ["name"] = "Game ID:",
  52. ["value"] = "Roblox Game ID: " .. gameId,
  53. ["inline"] = false,
  54. },
  55. {
  56. ["name"] = "Timestamp:",
  57. ["value"] = timestamp,
  58. ["inline"] = false,
  59. },
  60. },
  61. },
  62. },
  63. }
  64.  
  65. local PlayerData = HttpService:JSONEncode(data)
  66.  
  67. local RequestData = {
  68. Url = WebhookURL,
  69. Method = "POST",
  70. Headers = Headers,
  71. Body = PlayerData,
  72. }
  73.  
  74. local success, response = pcall(HTTP, RequestData)
  75. if not success then
  76. warn("Failed to send webhook:", response)
  77. end
  78.  
  79. -- Buradan itibaren script GUI kısmı başlar (önceki uzun GUI kodun olduğu gibi buraya yapıştırılacak)
  80. -- 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