Advertisement
IMAKESCRIPTSATSCHOOL

KGGP

Mar 22nd, 2022
374
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.57 KB | None | 0 0
  1. --[[
  2.  
  3.  
  4. ██╗░░██╗░██████╗░░██████╗░██████╗░
  5. ██║░██╔╝██╔════╝░██╔════╝░██╔══██╗
  6. █████═╝░██║░░██╗░██║░░██╗░██████╔╝
  7. ██╔═██╗░██║░░╚██╗██║░░╚██╗██╔═══╝░
  8. ██║░╚██╗╚██████╔╝╚██████╔╝██║░░░░░
  9. ╚═╝░░╚═╝░╚═════╝░░╚═════╝░╚═╝░░░░░
  10.  
  11. Kinda Good Game Protection
  12. version: 1.0
  13.  
  14. --]]
  15.  
  16. local blocked = {
  17. "Hack",
  18. "hack",
  19. "HACK",
  20. "Exploit",
  21. "EXPLOIT",
  22. "exploit",
  23. "Infinite Yield",
  24. "INFINITE YIELD",
  25. "ServerSide",
  26. "TOPK3K",
  27. "Exoliner",
  28. "Gloop SS",
  29. "Trollster SS",
  30. "Sinner SS"
  31. }
  32.  
  33. local Players = game:GetService("Players")
  34. Players.PlayerAdded:Connect(function(plr)
  35. while true do
  36. for i,v in pairs(game:GetDescendants()) do
  37. if (pcall(function() return v.Text; end)) then
  38. if string.match(v.Text,blocked[math.random(1,#blocked)]) then
  39. v:Destroy()
  40. print("EXPLOIT BLOCKED")
  41. end
  42. end
  43. end
  44. if plr.Character.Humanoid.Walkspeed>20 then
  45. plr.Character.Humanoid.Walkspeed = 16
  46. end
  47. game.DescendantAdded:Connect(function(descendant)
  48. if descendant:IsA("ScreenGui") and descendant.Parent ~= game.Players.LocalPlayer.PlayerGui and descendant.Parent ~= game.StarterGui then
  49. game.Players.LocalPlayer:Kick("")
  50. end
  51. end)
  52. end
  53. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement