Advertisement
HACKERthiskii

fps booster roblox script

Nov 5th, 2021
1,196
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.02 KB | None | 0 0
  1.  
  2. local decalsyeeted = true -- Leaving this on makes games look shitty but the fps goes up by at least 20.
  3. local g = game
  4. local w = g.Workspace
  5. local l = g.Lighting
  6. local t = w.Terrain
  7. t.WaterWaveSize = 0
  8. t.WaterWaveSpeed = 0
  9. t.WaterReflectance = 0
  10. t.WaterTransparency = 0
  11. l.GlobalShadows = false
  12. l.FogEnd = 9e9
  13. l.Brightness = 0
  14. settings().Rendering.QualityLevel = "Level01"
  15. for i,v in pairs(g:GetDescendants()) do
  16. if v:IsA("Part") or v:IsA("Union") or v:IsA("MeshPart") or v:IsA("CornerWedgePart") or v:IsA("TrussPart") then
  17. v.Material = "Plastic"
  18. v.Reflectance = 0
  19. elseif v:IsA("Decal") and decalsyeeted then
  20. v.Transparency = 1
  21. elseif v:IsA("ParticleEmitter") or v:IsA("Trail") then
  22. v.Lifetime = NumberRange.new(0)
  23. elseif v:IsA("Explosion") then
  24. v.BlastPressure = 1
  25. v.BlastRadius = 1
  26. end
  27. end
  28. for i,e in pairs(l:GetChildren()) do
  29. if e:IsA("BlurEffect") or e:IsA("SunRaysEffect") or e:IsA("ColorCorrectionEffect") or e:IsA("BloomEffect") or e:IsA("DepthOfFieldEffect") then
  30. e.Enabled = false
  31. end
  32. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement