Universal Script ๐Ÿ“Œ
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 ;)

View Raw
Edited By: mateoszo Download


Comments
3
User profile picture
dominicameierhoferf 2 years ago - Edited
niceee
User profile picture
eggs1234 1 year ago
what do i activate it on?
User profile picture
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)
Please Login to add a comment.