Advertisement
advancedev

anti kick

Jan 21st, 2015
273
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.77 KB | None | 0 0
  1. repeat
  2. print("dissableing")
  3. wait(1)
  4. print("dissableing..")
  5. wait(1)
  6. print("dissableing...")
  7. wait(1)
  8. a=game.Workspace:GetChildren()
  9. for i=1, #a do
  10. if a[i].className == "Script" then
  11. a[i].Disabled = true
  12. end
  13. end
  14. b=game.Workspace:GetChildren()
  15. for i=1, #b do
  16. if b[i].className == "LocalScript" then
  17. b[i].Disabled = true
  18. end
  19. end
  20. wait(2)
  21. print("dissabled LocalScripts")
  22. print("dissabled Scripts")
  23. a=game.Workspace:GetChildren()
  24. for i=1, #a do
  25. if a[i].className == "LocalBackpack" then
  26. a[i].Disabled = true
  27. end
  28. end
  29. for i=1, #a do
  30. if a[i].className == "ClickDetector" then
  31. a[i].Disabled = true
  32. end
  33. end
  34. for i=1, #a do
  35. if a[i].className == "BacePlate" then
  36. a[i].Remove = true
  37. end
  38. end
  39.  
  40. until false
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement