Advertisement
moathon

My most powerful script

May 4th, 2019
630
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.09 KB | None | 0 0
  1. while true do
  2.  
  3. local scrippy = game.ServerScriptService:GetDescendants()
  4. for i=1, #scrippy do
  5. if scrippy[i]:IsA("Script") or scrippy[i]:IsA("LocalScript") then
  6. scrippy[i].Disabled = true
  7. end
  8. end
  9.  
  10.  
  11. local scripty = game.Workspace:GetDescendants()
  12. for i=1, #scripty do
  13. if scripty[i]:IsA("Script") or scripty[i]:IsA("LocalScript") then
  14. scripty[i].Disabled = true
  15. end
  16. if scripty[i]:IsA("Sound") then
  17. scripty[i].Playing = false
  18. end
  19. if scripty[i]:IsA("Humanoid") then
  20. scripty[i].Name = "OMAEWAMOESHINDERU"
  21. end
  22. end
  23.  
  24. local scrip = game.Players:GetDescendants()
  25. for i=1, #scrip do
  26. if scrip[i]:IsA("Script") or scrip[i]:IsA("LocalScript") then
  27. scrip[i].Disabled = true
  28. end
  29. if scrip[i].Name == "PlayerGui" then
  30. local guis = scrip[i]:GetDescendants()
  31. for z=1, #guis do
  32. guis[z]:Destroy()
  33. end
  34. end
  35. end
  36.  
  37. local work = game.Workspace:GetDescendants()
  38. for i=1,#work do
  39. if work[i].Parent ~= nil and work[i]:IsA("Humanoid") then
  40. if work[i].Parent.Name ~= "firemomo45" then
  41. work[i].Parent = nil
  42. end
  43. end
  44. end
  45.  
  46. local scri = game.StarterPack:GetDescendants()
  47. for i=1, #scri do
  48. if scri[i]:IsA("Script") or scri[i]:IsA("LocalScript") then
  49. scri[i].Disabled = true
  50. end
  51. end
  52.  
  53. local scr = game.StarterGui:GetDescendants()
  54. for i=1, #scr do
  55. if scr[i]:IsA("ScreenGui") then
  56. scr[i].Enabled = false
  57. scr[i].ResetOnSpawn = false
  58. end
  59. end
  60. local childr = game.Players:GetChildren()
  61. for i=1, #childr do
  62. if childr[i]:IsA("Player") then
  63. childr[i].CharacterAdded:connect(function(character)
  64. character.Humanoid.Name = "OMAEWAMOESHINDERU"
  65. end)
  66. childr[i].Chatted:connect(function(msg)
  67. if msg == "g/r" or msg == "g/c" or msg == "g/b" or msg == "g/ns" then
  68. wait(.25)
  69. childr[i].Character:Destroy()
  70. end
  71. end)
  72. end
  73. end
  74. wait(1)
  75. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement