Hey gents, I created a server info tag as a ScreenGUI
My issue here is that the Ping isn’t displaying accurately? Anyone know why?
EDIT: It always seems to be half what ROBLOX is reporting
while true do
wait()
local ping = game.Players.LocalPlayer:GetNetworkPing() * 1000
script.Parent.PingText.Text = "PING : " .. math.round(ping) .. " ms"
end