Aller au contenu
Fonctionnel

opensource fps bost

CHchaspersky01570 vuesUniversal29 juil. 2026
Partager
opensource fps bost

Code du script

Lua
local Players = game:GetService("Players")
local Lighting = game:GetService("Lighting")
local Workspace = game:GetService("Workspace")
local RunService = game:GetService("RunService")
local UserInputService = game:GetService("UserInputService")
local LocalPlayer = Players.LocalPlayer

local fpsboost = false
local originalsettings = {}

setfpscap(1000)
local function applyfpsboost(state)
    if state then
        originalsettings = {
            Brightness = Lighting.Brightness,
            GlobalShadows = Lighting.GlobalShadows,
            FogEnd = Lighting.FogEnd,
            QualityLevel = settings().Rendering.QualityLevel
        }

        Lighting.GlobalShadows = false
        Lighting.FogEnd = 100000
        Lighting.Brightness = 1.5

        for _, v in pairs(Lighting:GetChildren()) do
            if v:IsA("PostProcessEffect") or v:IsA("BloomEffect") or v:IsA("BlurEffect") or v:IsA("SunRaysEffect") or v:IsA("DepthOfFieldEffect") or v:IsA("ColorCorrectionEffect") then
                v.Enabled = false
            end
        end

        settings().Rendering.QualityLevel = 1

        for _, part in ipairs(Workspace:GetDescendants()) do
            if part:IsA("BasePart") then
                pcall(function()
                    part.CastShadow = false
                end)
            end
        end


        print("fps boost on")
    else
        Lighting.Brightness = originalsettings.Brightness or 1
        Lighting.GlobalShadows = originalsettings.GlobalShadows or true
        Lighting.FogEnd = originalsettings.FogEnd or 100000
        settings().Rendering.QualityLevel = originalsettings.QualityLevel or 3

        print("fps boost off")
    end
end

UserInputService.InputBegan:Connect(function(input, gameProcessed)
    if gameProcessed then return end
    if input.KeyCode == Enum.KeyCode.F then
        fpsboost = not fpsboost
        applyfpsboost(fpsboost)
    end
end)

print("press f to toggle")

Description

i went from 280 fps to 560 so i think its pretty good lol toggle is f

Commentaires (0)

Connectez-vous pour participer à la conversation

  • Soyez le premier à commenter.

Questions fréquentes

Comment utiliser le script opensource fps bost ?
Copiez le code du script ci-dessus, rejoignez Universal sur Roblox, puis collez et exécutez le code dans votre executor. Les fonctionnalités s'activent dès que le script tourne.
Est-ce que opensource fps bost fonctionne encore ?
Oui — opensource fps bost est actuellement marqué comme fonctionnel (dernière mise à jour : 15 sept. 2026). S'il casse après une mise à jour de Roblox, repassez bientôt pour une version corrigée.
Quel exécuteur fonctionne avec opensource fps bost ?
Ce script fonctionne avec la plupart des exécuteurs Roblox populaires. Consultez notre page d'exécuteurs pour trouver un exécuteur gratuit ou payant fiable pour votre appareil.