Helgodxdd

de

Mar 13th, 2022 (edited)
2,003
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.38 KB | None | 0 0
  1. if (not identifyexecutor()) then
  2.     game.Players.LocalPlayer:Kick("Unable To Read Executor Name, Which Means You can't Use My script")
  3. end
  4. local Exploit = identifyexecutor()
  5. local httpGet;
  6. if Exploit == "Synapse X" then
  7.     httpGet = syn.request
  8. elseif Exploit == "ScriptWare" then
  9.     httpGet = http.request
  10. elseif Exploit == "Fluxus" then
  11.     httpGet = http_request
  12. elseif Exploit == "Krnl" then
  13.     httpGet = http_request
  14. elseif Exploit == "SirHurt V4" then
  15.     httpGet = http_request
  16. elseif Exploit == "PSU" then
  17.     httpGet = http_request
  18. end
  19.             local body = httpGet({Url = 'https://httpbin.org/get'; Method = 'GET'}).Body;
  20.             local decoded = game:GetService('HttpService'):JSONDecode(body)
  21.             local hwid_list = {"Syn-Fingerprint",
  22.     "Exploit-Guid",
  23.     "Proto-User-Identifier",
  24.     "Sentinel-Fingerprint",
  25.     "Krnl-Fingerprint",
  26.     "Seraph-Fingerprint",
  27.     "Bleu-Fingerprint",
  28.     "Hexus-Fingerprint",
  29.     "Cyber-Fingerprint",
  30.     "Tervylla-Fingerprint",
  31.     "Veil-Fingerprint",
  32.     "Elysian-Fingerprint",
  33.     "Reign-Fingerprint",
  34.     "RVX-4-Fingerprint",
  35.     "TEC-7-Fingerprint",
  36.     "Rein-Fingerprint",
  37.     "Fingerprint"};
  38.             local hwid = "";
  39.  
  40.             for i, v in next, hwid_list do
  41.                 if decoded.headers[v] then
  42.                     hwid = decoded.headers[v];
  43.                     break
  44.                 end
  45.             end
  46.  
  47.             if hwid then
  48.                 if Exploit ~= "PSU" then
  49.                     return hwid
  50.                 end
  51.             else
  52.                 return "no"
  53.             end
Add Comment
Please, Sign In to add comment