Fonctionnel
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 ci-dessus, ouvrez votre exécuteur Roblox, collez le code et appuyez sur exécuter pendant que vous êtes dans le jeu. Les fonctionnalités s'activent instantanément une fois le script lancé.
- Le script opensource fps bost est-il gratuit ?
- Oui. Ce script est gratuit à copier et utiliser. S'il utilise un système de clé, suivez le lien « Obtenir la clé » pour le débloquer gratuitement.
- Le script opensource fps bost est-il sûr à utiliser ?
- Le code source complet est affiché sur cette page pour que vous puissiez lire exactement ce qu'il fait avant de l'exécuter. Utilisez toujours un exécuteur de confiance, et n'oubliez pas que l'utilisation de scripts est contraire aux conditions d'utilisation de Roblox — utilisez-les à vos propres risques.
- 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.