
11.4k Views
simple fps limiter
Universal Script ๐Uploaded by 2 years ago
Please login to perform these actions:
Description
simple fps limiter universal fps blocker fps limit by chat gpt ;)
Comments
3

Offline
dominicameierhoferf 2 years ago - Edited
niceee
Offline
eggs1234 1 year ago
what do i activate it on?
Offline
ImA_Programmer404 1 week ago
if you want a toggle-able fps limiter:
-- :]
local TARGET_FPS = 15
local UserInputService = game:GetService("UserInputService")
local Players = game:GetService("Players")
local player = Players.LocalPlayer
local gui = Instance.new("ScreenGui")
gui.ResetOnS* = false
gui.Parent = player:WaitForChild("PlayerGui")
local label = Instance.new("TextLabel")
label.Size = UDim2.new(0, 200, 0, 50)
label.Position = UDim2.new(0.5, -100, 0, 10)
label.BackgroundTransparency = 1
label.TextScaled = true
label.Font = Enum.Font.SourceSansBold
label.Parent = gui
local isOn = true
setfpscap(TARGET_FPS)
label.Text = "FPS Limiter: ON"
label.TextColor3 = Color3.new(0, 1, 0)
UserInputService.InputBegan:Connect(function(input, gameProcessed)
if gameProcessed then return end
if input.KeyCode == Enum.KeyCode.J then
isOn = not isOn
if isOn then
setfpscap(TARGET_FPS)
label.Text = "FPS Limiter: ON"
label.TextColor3 = Color3.new(0, 1, 0)
else
setfpscap(0)
label.Text = "FPS Limiter: OFF"
label.TextColor3 = Color3.new(1, 0, 0)
end
end
end)

![[๐] San Diego Border Roleplay](/images/script/136020512003847-1785921902099.png)
![Night Shift at Paulie's (Early Beta) [HORROR]](/images/script/82075856475941-1786976370745.jpg)