-- LocalScript داخل StarterGui local P=game:GetService("Players").LocalPlayer local Run=game:GetService("RunService") local Stats=game:GetService("Stats") local G=Instance.new("ScreenGui");G.Name="RIPGui";G.ResetOnSpawn=false;G.Parent=P:WaitForChild("PlayerGui") -- RIP frame local F=Instance.new("Frame",G);F.Size=UDim2.new(0,190,0,80);F.Position=UDim2.new(0.4,0,0.1,0);F.BackgroundColor3=Color3.fromRGB(25,25,25);F.BackgroundTransparency=0;F.BorderSizePixel=0;F.Active=true;F.Draggable=true Instance.new("UICorner",F).CornerRadius=UDim.new(0,12) local L=Instance.new("Frame",F);L.Size=UDim2.new(1,-20,0,1);L.Position=UDim2.new(0,10,0,28);L.BackgroundColor3=Color3.fromRGB(60,60,60);L.BorderSizePixel=0 local T=Instance.new("TextLabel",F);T.Size=UDim2.new(1,0,0,24);T.Position=UDim2.new(0,0,0,2);T.BackgroundTransparency=1;T.Text="RIP";T.Font=Enum.Font.GothamBold;T.TextSize=20;T.TextColor3=Color3.new(1,1,1) local Timer=Instance.new("TextLabel",F);Timer.Size=UDim2.new(1,0,0,40);Timer.Position=UDim2.new(0,0,0,34);Timer.BackgroundTransparency=1;Timer.Text="00:00:00";Timer.Font=Enum.Font.GothamBold;Timer.TextSize=22;Timer.TextColor3=Color3.new(1,1,1) local S=Instance.new("TextLabel",F);S.Size=Timer.Size;S.Position=Timer.Position+UDim2.new(0,1,0,1);S.BackgroundTransparency=1;S.Text=Timer.Text;S.Font=Timer.Font;S.TextSize=Timer.TextSize;S.TextColor3=Color3.fromRGB(0,0,0);S.ZIndex=Timer.ZIndex-1 -- counter task.spawn(function() local sec=0; while true do sec+=1; local h=math.floor(sec/3600); local m=math.floor((sec%3600)/60); local s=sec%60; local txt=string.format("%02d:%02d:%02d",h,m,s); Timer.Text=txt; S.Text=txt; task.wait(1) end end) -- Ping+FPS local SF=Instance.new("Frame",G);SF.Size=UDim2.new(0,160,0,60);SF.Position=UDim2.new(1,-170,0,10);SF.BackgroundTransparency=1;SF.BorderSizePixel=0 local PNL=Instance.new("TextLabel",SF);PNL.Size=UDim2.new(1,0,0,28);PNL.Position=UDim2.new(0,0,0,2);PNL.BackgroundTransparency=1;PNL.Text="Ping: ...";PNL.Font=Enum.Font.GothamBold;PNL.TextSize=18;PNL.TextColor3=Color3.new(1,1,1) local FSL=Instance.new("TextLabel",SF);FSL.Size=UDim2.new(1,0,0,28);FSL.Position=UDim2.new(0,0,0,30);FSL.BackgroundTransparency=1;FSL.Text="FPS: ...";FSL.Font=Enum.Font.GothamBold;FSL.TextSize=18;FSL.TextColor3=Color3.new(1,1,1) task.spawn(function() while true do local ping=0; pcall(function() ping=math.floor(Stats.Network.ServerStatsItem["Data Ping"]:GetValue()) end) local fps=math.floor(1/(Run.RenderStepped:Wait())) PNL.Text="Ping: "..tostring(ping).." ms" FSL.Text="FPS: "..tostring(fps) task.wait(0.05) end end)