ADVERTISEMENTREMOVE ADS

Fps Counter V1.5

Universal script
11 months ago
Script preview thumbnail
Script Preview

Description

V1.5 CHANGELOG (2025/05/19/12:00 AM)

Removed Unlocker And Credits

Removed Outline Of Border

Smaller Circle UI, Modern Topbar UI

Shorter Script Aka Code (not in loadstring)

V1.6 CHANGELOG (2025/05/19/02:20 PM)

Added TopbarStandard Checker

Features:

  • Fps
  • Fps Unlocker
  • Counter
  • Soruce
ADVERTISEMENTREMOVE ADS
43 Lines • 1.43 KiB
Raw
--[[
WARNING: Heads up! This script has not been verified by ScriptBlox. Use at your own risk!
]]
-- credit me (aabbaaii13/14) if you modified this script
if not game:GetService("Players").LocalPlayer:WaitForChild("PlayerGui"):FindFirstChild("TopbarStandard") then
loadstring(game:HttpGet("https://raw.githubusercontent.com/CaseohCASEOH/aabbaaii/refs/heads/main/Topbar.lua"))()
end
loadstring(game:HttpGet('https://raw.githubusercontent.com/CaseohCASEOH/aabbaaii/refs/heads/main/Popup2'))()
local screengui = game:GetService("Players").LocalPlayer.PlayerGui.TopbarStandard.Holders.Left
local frame = Instance.new("Frame", screengui)
local textlabel = Instance.new("TextLabel", frame)
local uicorner = Instance.new("UICorner", frame)
frame.Name = "Widget"
frame.Size = UDim2.new(0, 44, 0, 44)
frame.Position = UDim2.new(0.85, 0, 0, 0)
frame.BackgroundColor3 = Color3.new(0, 0, 0)
frame.BackgroundTransparency = 0.3
textlabel.Size = UDim2.new(1, 0, 1, 0)
textlabel.BackgroundTransparency = 1
textlabel.TextColor3 = Color3.new(1, 1, 1)
textlabel.Text = "FPS: 0"
textlabel.TextSize = 12
textlabel.Font = Enum.Font.GothamBold
uicorner.CornerRadius = UDim.new(1, 0)
local n = 0
local o = 0
game:GetService("RunService").RenderStepped:Connect(function(q)
n += 1
o += q
if o >= 1 then
local r = n / o
textlabel.Text = string.format("FPS: %.0f", r)
n = 0
o = 0
end
end)
ADVERTISEMENTREMOVE ADS

Comments

0 comments
to add a comment
Loading comments
ADVERTISEMENTREMOVE ADS