Advertisement
Ant8893

Lag Test 2021 anti lag

Feb 26th, 2022
105
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.51 KB | None | 0 0
  1. -- Lag Test 2021 (https://www.roblox.com/library/6356806222) anti lag
  2. -- V1 (ok)
  3. while wait() do
  4. for _,part in pairs(game.Workspace.Parts:GetChildren()) do
  5. part.Anchored = true
  6. end
  7. end
  8. -- V2 (great)
  9. game.Workspace.Parts.ChildAdded:Connect(function(part)
  10. part.Anchored = true
  11. end)
  12. -- V3 (bad)
  13. game.Workspace.Parts.ChildAdded:Connect(function(part)
  14. part.CanCollide = false
  15. end)
  16. -- V4 (great)
  17. game.Workspace.Parts.ChildAdded:Connect(function(part)
  18. wait()
  19. part:Destroy()
  20. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement