コンテンツへスキップ
動作中

opensource fps bost

CHchaspersky01570 閲覧数Universal2026年7月29日
共有
opensource fps bost

スクリプトコード

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")

説明

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

コメント (0)

会話に参加するにはログインしてください

  • 最初のコメントを投稿しましょう。

よくある質問

opensource fps bostスクリプトはどう使いますか?
上のスクリプトコードをコピーし、RobloxでUniversalに参加して、エグゼキューターに貼り付けて実行してください。スクリプトが動くとすぐに機能が有効になります。
opensource fps bostはまだ動作しますか?
はい。opensource fps bostは現在「動作中」とマークされています(最終更新: 2026年9月15日)。Robloxのアップデートで動かなくなった場合は、更新版をお待ちください。
opensource fps bostに対応するエグゼキューターは?
このスクリプトはほとんどの人気Robloxエグゼキューターで動作します。お使いのデバイス向けの信頼できる無料または有料エグゼキューターを見つけるには、エグゼキューターページをご覧ください。