Roblox Ping Spoofer Script - Spoof Your Performance Stats Ping

Опубликовано: 06 Апрель 2026
на канале: TechHog
28,462
174

In this video I go over a script that will spoof your ping in the performance stats menu.

btw, I have synapse v3 so that's why the external ui and internal ui look like that.

Script:
local PerformanceStats = game:GetService("CoreGui"):WaitForChild("RobloxGui"):WaitForChild("PerformanceStats");
local PingLabel;
for I, Child in next, PerformanceStats:GetChildren() do
if Child.StatsMiniTextPanelClass.TitleLabel.Text == "Ping" then
PingLabel = Child.StatsMiniTextPanelClass.ValueLabel;
break;
end;
end;

local text = "spoof";
PingLabel:GetPropertyChangedSignal("Text"):Connect(function()
PingLabel.Text = text;
end);
PingLabel.Text = text;