Advertisement
moathon

Potentially Game Breaking Script

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