Advertisement
BenjaminPlays

Decrease Lag Script - ROBLOX

Oct 17th, 2020
217
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1.  
  2. wait(1)
  3.  
  4. local parts = game.Workspace:GetChildren()
  5. for i = 1,#parts do
  6. local name = string.lower(parts[i].Name)
  7. 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
  8. parts[i]:remove()
  9. end
  10. end
  11.  
  12. wait()
  13. script:remove()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement