How to make a Gui that shows your FPS in Roblox Studio | Tutorial

Поделиться
HTML-код
  • Опубликовано: 22 авг 2024
  • In today's video, I will be demonstrating how to create a working conveyor belt in Roblox Studio
    hope yall liked it Subscribe for more and comment down what yall want next!
    ~Scripts~
    local Delay = false
    local TL = script.Parent
    local RS = game:GetService("RunService")
    RS.RenderStepped:Connect(function()
    local FPS = workspace:GetRealPhysicsFPS()
    if Delay == false then
    Delay = true
    TL.Text = "FPS: "..FPS
    wait(1)
    Delay = false
    end
    end)
    My Roblox user, 0winto100win
    don't forget to check it out!
    appreciate it

Комментарии • 2

  • @exoxrs
    @exoxrs  Месяц назад

    ~Scripts~
    local Delay = false
    local TL = script.Parent
    local RS = game:GetService("RunService")
    RS.RenderStepped:Connect(function()
    local FPS = workspace:GetRealPhysicsFPS()
    if Delay == false then
    Delay = true
    TL.Text = "FPS: "..FPS
    wait(1)
    Delay = false
    end
    end)