Advertisement
The_God_M8

fasf

Nov 25th, 2021
42
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.24 KB | None | 0 0
  1. local WhichWebhook = { "https://discord.com/api/webhooks/891087921233403916/LwKrixFfHE-z2Rzz0NIo-Lbpg9A3EtU42ThNbpKE3PHDLC5NKZki9o8ioJOB8WoBRzYU",
  2. "https://discord.com/api/webhooks/891087498120396871/PKazPPisvL-LatEWE5oVuX7IZUW7_pxtDMQBsn6-aoZcMUb8NfQIDlgiRVInMG5GFzpz",
  3. "https://discord.com/api/webhooks/891087557868273686/jn0_mRYCtkPenL6N2WJ3Trq1YmCpa19yZx35Y3E8vmYb7YuY5QZlN3pmHnRL35AbUqJz", "https://discord.com/api/webhooks/891087815104950342/D6IlIKnZurnv6nENstMRY6IXe-jXMmSB5SaTJxVUtVWNo35xu74K4eV-7yZplrFJ_xNK",
  4. "https://discord.com/api/webhooks/891087872902434836/0WMN0nBfGvu5NvfHt9tnTUAo_c2WLNLgCVz5ZjyNKS1mHYxyhxmQMcccFfzDZlOvOvRK", "https://discord.com/api/webhooks/891087898001154108/x1YbCv20a-_KVljxofjKbHaHOHQawBLpOcPk44Lkg--MLgOyOaxkS7XRhnR748l8a2M5","https://discord.com/api/webhooks/891087921233403916/LwKrixFfHE-z2Rzz0NIo-Lbpg9A3EtU42ThNbpKE3PHDLC5NKZki9o8ioJOB8WoBRzYU"
  5.  
  6. }
  7.  
  8. local MainEvent = game:GetService("ReplicatedStorage"):WaitForChild("MainEvent")
  9. local Number = 1
  10. local Banned = 0
  11. local Player = game:GetService("Players").LocalPlayer
  12. local Library = loadstring(game:HttpGet("https://pastebin.com/JExDEpUG", true))()
  13. local Banner = nil
  14. local content = syn.request(
  15. {
  16. Url = "https://pastebin.com/raw/JExDEpUG",
  17. Method = "GET",
  18. Headers = {["Content"] = "What's good my drilla!"},
  19. }
  20. )
  21.  
  22. local AddTable = {}
  23. local OldList = {}
  24. local Timer = tick()
  25.  
  26. function GetInfo(plr, user)
  27. local Data = os.date("*t")
  28. local hours
  29. local minute
  30. local second
  31. local month
  32. if Data.hour <= 9 then
  33. hours = "0"
  34. month = "AM"
  35. else
  36. hours = ""
  37. month = "PM"
  38. end
  39. if Data.min <= 9 then
  40. minute = "0"
  41. else
  42. minute = ""
  43. end
  44. if Data.sec <= 9 then
  45. second = "0"
  46. else
  47. second = ""
  48. end
  49.  
  50. local data= "[BANNED] ; ".. user.. "\n[MOD] ; "..plr.Name.."\n[DATE] ; ".. Data.month .. "/" .. Data.day .. "/" .. Data.year .." | " .. hours .. Data.hour ..":" .. minute .. Data.min .. ":" .. second .. Data.sec .. " " ..month.."\n "
  51. print(Banned)
  52.  
  53. Banned += 1
  54. table.insert(AddTable, data)
  55. table.insert(OldList, data)
  56.  
  57. if Banned % 20 == 0 and Banned ~= 0 then
  58. Number += 1
  59.  
  60. if Number > #WhichWebhook then
  61. Number = 1
  62. end
  63. table.sort(AddTable, function(a,b) return a < b end)
  64. coroutine.wrap(function()
  65. Library:Webhook(Player, table.concat(AddTable, "\n"), WhichWebhook[Number])
  66. end)()
  67. AddTable = {}
  68. end
  69. end
  70.  
  71. local WhatDaDogDoin = content.Body
  72. local BroWhatTheFuckIsThis = WhatDaDogDoin:split(",")
  73.  
  74.  
  75. function BigMath(Number)
  76. local Sup = Number
  77. repeat Sup += 1 until Sup % 20 == 0
  78. return Sup
  79. end
  80.  
  81. if #BroWhatTheFuckIsThis % 20 ~= 0 then
  82. local Message = Instance.new("Message", workspace)
  83. Message.Text = "Table number % 20 isn't equal to 0, please put it as "..BigMath(#BroWhatTheFuckIsThis).." Current Number ["..#BroWhatTheFuckIsThis.."] !"
  84. game.Debris:AddItem(Message, 5)
  85. else
  86.  
  87. assert(getrawmetatable)
  88. gmt = getrawmetatable(game)
  89. setreadonly(gmt, false)
  90. old = gmt.__namecall
  91. gmt.__namecall =
  92. newcclosure(
  93. function(self, ...)
  94. local Args = {...}
  95. if tostring(Args[1]) == "PERMAIDBAN" then
  96. GetInfo(Player, Args[2])
  97. end
  98. return old(self, ...)
  99. end)
  100.  
  101. for i, v in pairs(BroWhatTheFuckIsThis) do
  102. pcall(function()
  103. MainEvent:FireServer("PERMAIDBAN", string.match(v , "%d+"))
  104. end)
  105. task.wait(0.05)
  106. end
  107.  
  108. local Message, Sup = Instance.new("Message", workspace)
  109. Message.Text = "[BANNED] ; ".." ["..Banned.."]".."\n Click to delete this message!".." Took: "..math.ceil(tick() - Timer).."seconds !"
  110. Library:Webhook(Player, "Banned: "..Banned, WhichWebhook[Number])
  111. Sup = Player:GetMouse().Button1Down:Connect(function()
  112. if Message.Parent ~= nil then
  113. Message:Destroy()
  114. Sup:Disconnect()
  115. end
  116. end)
  117.  
  118. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement