Advertisement
PassowrdUsernamePriv

Smooth FPS?

Feb 7th, 2020
338
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. local timeBegan = tick()
  2. for i,v in ipairs(workspace:GetDescendants()) do
  3. if v:IsA("BasePart") then
  4. v.Material = "SmoothPlastic"
  5. end
  6. end
  7. for i,v in ipairs(game:GetService("Lighting"):GetChildren()) do
  8. v:Destroy()
  9. end
  10. local timeEnd = tick() - timeBegan
  11. local timeMS = math.floor(timeEnd*1000)
  12. print("shoudl work now lmao " .. timeMS .. "ms")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement