Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- --Created by UraniumBanana5
- local runService = game:GetService("RunService")
- local fpsLabel = script.Parent
- local fps = 0
- runService.RenderStepped:Connect(function()
- fps = fps + 1
- end)
- while true do
- fpsLabel.Text = ("FPS: "..fps)
- fps = 0
- wait(1)
- end
Advertisement
Add Comment
Please, Sign In to add comment