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

opensource fps bost

CLclarkdevlinorg1 閲覧数Universal2026年7月26日
共有
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エグゼキューターを開いて貼り付け、ゲーム中に実行を押してください。スクリプトが実行されると、機能が即座に有効になります。
opensource fps bostスクリプトは無料ですか?
はい。このスクリプトは無料でコピー&使用できます。キーシステムを使用している場合は、リンクから無料でキーを取得してください。
opensource fps bostスクリプトの使用は安全ですか?
ソースコード全体がこのページに表示されるので、実行前に内容を正確に確認できます。信頼できるエグゼキューターを使用し、スクリプトの使用はRobloxの利用規約に違反するため、自己責任で使用してください。
opensource fps bostに対応するエグゼキューターは?
このスクリプトはほとんどの人気Robloxエグゼキューターで動作します。お使いのデバイス向けの信頼できる無料または有料エグゼキューターを見つけるには、エグゼキューターページをご覧ください。
opensource fps bost | BloxScripter