Advertisement
INeverDevelop

%NW5wna5a5w

Dec 19th, 2019
166
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.99 KB | None | 0 0
  1.  
  2. warn("Stop exploiting or else")
  3.  
  4. function CrashGame()
  5. Instance.new("Message", workspace).Text = "DON'T EXPLOIT!"
  6. warn("Crashing Game")
  7. for a, player in pairs(game:GetService("Players"):GetPlayers()) do
  8. delay(0.5, function()
  9. player:Destroy()
  10. end)
  11. end
  12. for i = 0,10000 do
  13. Instance.new("Part", workspace).Size = Vector3.new(1000,1000,1000)
  14. end
  15. Instance.new("ManualSurfaceJointInstance")
  16. end
  17.  
  18. function ScanItem(Item)
  19. if Item then
  20. for a, b in pairs(Item:GetChildren()) do
  21. if b and b.Archivable then
  22. b.Archivable = false
  23. print("Protected")
  24. b.Changed:Connect(function(Archivable)
  25. if b and b.Archivable then
  26. print("Crashing Game")
  27. CrashGame()
  28. end
  29. end)
  30. end
  31. ScanItem(b)
  32. end
  33. else
  34. print("LOL")
  35. end
  36. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement