local a=game:GetService("Players")local b=game:GetService("Stats")local c=game:GetService("RunService")local d=game:GetService("Lighting")local e=game:GetService("Workspace")local f=a.LocalPlayer;local g=Instance.new("ScreenGui")g.ResetOnSpawn=false;g.Parent=f:WaitForChild("PlayerGui")local h=Instance.new("Frame")h.Size=UDim2.new(0,0,0,0)h.Position=UDim2.new(1,-10,0,5)h.BackgroundTransparency=1;h.Parent=g;local function i(j,k,l)local m=Instance.new("TextLabel")m.Size=UDim2.new(0,300,0,20)m.Position=UDim2.new(0,-300,0,j)m.BackgroundTransparency=1;m.Text=k;m.TextColor3=l;m.Font=Enum.Font.GothamBold;m.TextSize=16;m.TextXAlignment=Enum.TextXAlignment.Right;m.Parent=h;return m end;local n=i(2,"Time: 00:00:00",Color3.new(1,1,1))local o=i(26,"FPS: --",Color3.fromRGB(0,255,0))local p=i(50,"Ping: --",Color3.fromRGB(0,200,255))local q=i(74,"Load: 0%",Color3.fromRGB(255,165,0))local r=i(98,"LOW",Color3.fromRGB(255,0,0))local s=tick()task.spawn(function()while wait(1)do local t=math.floor(tick()-s)n.Text=string.format("Time: %02d:%02d:%02d",math.floor(t/3600),math.floor(t%3600/60),t%60)end end)local u,v,w,x=0,0,tick(),0;c.RenderStepped:Connect(function()x=x+1;local y=tick()if y-w>=0.2 then v=x/(y-w)x=0;w=y end;u=u+(v-u)*0.1;o.Text=string.format("FPS: %.0f",u)end)local z=0;task.spawn(function()while wait(0.1)do local A=0;pcall(function()local B=b.Network.ServerStatsItem:FindFirstChild("Data Ping")if B then A=B:GetValue()end end)z=z+(A-z)*0.1;p.Text=string.format("Ping: %.0f ms",z)end end)local C=0;task.spawn(function()while wait(0.1)do local D=b.Performance:GetTotalMemoryUsageMb()local E=math.clamp(D/500*100,0,100)local F=math.clamp((60-u)/60*100,0,100)local G=E*0.6+F*0.4;C=C+(G-C)*0.15;q.Text=string.format("Load: %.0f%%",C)end end)local H=false;local function I()H=not H;d.GlobalShadows=not H;e.StreamingEnabled=not H;r.Text=H and"LOW ✅"or"LOW ❌"end;task.spawn(function()while wait(0.2)do local J=e.CurrentCamera;if J then r.Text=("LOW | %dx%d"):format(J.ViewportSize.X,J.ViewportSize.Y)end end end)h.InputBegan:Connect(function(K)if K.UserInputType==Enum.UserInputType.MouseButton1 then I()end end)print(".......")