Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- Roblox FPS Boost Script
- -- Disable unnecessary graphics settings
- game.StarterGui:SetCore("TopbarEnabled", false)
- game.Workspace.CurrentCamera.FieldOfView = 70
- -- Adjust graphics settings
- game.GraphicsQuality = Enum.QualityLevel.Level2
- -- Disable shadows
- for _, descendant in pairs(game.Workspace:GetDescendants()) do
- if descendant:IsA("ShadowMap") then
- descendant:Destroy()
- end
- end
- -- Adjust render distance
- game.Workspace.CurrentCamera.ClipsDescendants = true
- game.Workspace.CurrentCamera.NearClipPlane = 0.1
- game.Workspace.CurrentCamera.FarClipPlane = 256
- -- Reduce particle effects
- for _, descendant in pairs(game.Workspace:GetDescendants()) do
- if descendant:IsA("ParticleEmitter") then
- descendant.Enabled = false
- end
- end
- -- Disable unnecessary scripts
- for _, descendant in pairs(game:GetDescendants()) do
- if descendant:IsA("Script") or descendant:IsA("LocalScript") then
- descendant.Disabled = true
- end
- end
Advertisement
Add Comment
Please, Sign In to add comment