ScriptBlox is undergoing maintenance, so downtime is possible. Sorry for the inconvenience!
Universal Script 📌
33.3k Views

fps viewer

Universal Script 📌Uploaded by
2 years ago
Please login to perform these actions:

Description

idk

View Raw
Edited By: battybat Download


Comments
5
User profile picture
KaGa999 2 years ago - Edited
It's good but when I'm die it will disappear
User profile picture
freezehubv4 2 years ago - Edited
fixed version: local GuiService = game:GetService("GuiService") local Players = game:GetService("Players") -- GUI için ScreenGui objesi oluşturuyoruz local screenGui = Instance.new("ScreenGui") screenGui.Name = "FPSCounter" -- ScreenGui'nin adını ayarlıyoruz screenGui.Parent = Players.LocalPlayer:WaitForChild("PlayerGui") -- Oyuncunun ekran GUI'sine ekliyoruz screenGui.ResetOnS* = false -- FPS değerini gösterecek metin kutusunu oluşturuyoruz local fpsDisplay = Instance.new("TextLabel") fpsDisplay.Name = "FPSDisplay" -- Metin kutusunun adını ayarlıyoruz fpsDisplay.Size = UDim2.new(0, 100, 0, 20) -- Boyutunu ayarlıyoruz fpsDisplay.Position = UDim2.new(0, 10, 0, 10) -- Konumunu ayarlıyoruz fpsDisplay.BackgroundColor3 = Color3.fromRGB(0, 0, 0) -- Arka plan rengini ayarlıyoruz fpsDisplay.TextColor3 = Color3.fromRGB(255, 255, 255) -- Metin rengini ayarlıyoruz fpsDisplay.TextSize = 18 -- Metin boyutunu ayarlıyoruz fpsDisplay.Font = Enum.Font.SourceSans -- Kullanılacak fontu ayarlıyoruz fpsDisplay.Text = "FPS: --" -- Başlangıç metnini ayarlıyoruz -- Metin kutusunu ScreenGui içine ekliyoruz fpsDisplay.Parent = screenGui -- FPS değerini güncelleyecek olan işlevi tanımlıyoruz local function updateFPS() local fps = 1 / game:GetService("RunService").RenderStepped:Wait() -- Mevcut FPS değerini hesaplıyoruz fpsDisplay.Text = string.format("FPS: %.2f", fps) -- Metin kutusunu güncelliyoruz end -- Her kare yenilemesinde FPS değerini güncellemek için bir döngü oluşturuyoruz while true do updateFPS() -- FPS değerini güncelliyoruz wait(1) -- 1 saniye bekliyoruz (FPS değerini her saniye bir kez güncellemek için) end
User profile picture
battybat 2 years ago - Edited
kaga999 ok i will fix ty for comment
User profile picture
battybat 2 years ago - Edited
kaga999 or i cant its broked
User profile picture
UltraSirius 11 months ago
chatgpt
Please Login to add a comment.