跳转到内容
可用

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