Advertisement
FlyingDoggy

Huge FPS Improver (Not Mine)

Dec 28th, 2022 (edited)
241
1
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.53 KB | Source Code | 1 0
  1. Note: Hugely increases FPS. Recommended to use for autofarming. Graphics will look very bad after execution.
  2. Script:
  3. for _,v in pairs(workspace:GetDescendants()) do
  4. if v.ClassName == "Part"
  5. or v.ClassName == "SpawnLocation"
  6. or v.ClassName == "WedgePart"
  7. or v.ClassName == "Terrain"
  8. or v.ClassName == "MeshPart" then
  9. v.BrickColor = BrickColor.new(155, 155, 155)
  10. v.Material = "Plastic"
  11. end
  12. end
  13.  
  14. for _,v in pairs(workspace:GetDescendants()) do
  15. if v.ClassName == "Decal"
  16. or v.ClassName == "Texture" then
  17. v:Destroy()
  18. end
  19. endd
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement