Advertisement
Animescapetower

Untitled

Feb 25th, 2018
257
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. -- Ganondude
  2. -- For those players fond of adding many anti-lag scripts, this script is sure to help.
  3.  
  4. wait(1)
  5.  
  6. local parts = game.Workspace:GetChildren()
  7. for i = 1,#parts do
  8. local name = string.lower(parts[i].Name)
  9. if (string.find(name,"lag") ~= nil) and ((string.find(name,"anti") ~= nil) or (string.find(name,"no") ~= nil) or (string.find(name,"remover") ~= nil) or (string.find(name,"killer") ~= nil)) and (parts[i] ~= script) then
  10. parts[i]:remove()
  11. end
  12. end
  13.  
  14. wait()
  15. script:remove()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement