Advertisement
Navarone19_CH

PING GUI

Sep 25th, 2020
2,245
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. function GetPing()
  2. local Ping = 300-((1/wait())*10)
  3. if Ping < 1 then
  4. Ping = 1
  5. end
  6. return math.floor(Ping)
  7. end
  8.  
  9. while wait() do
  10. script.Parent.Text = "PING : "..GetPing()
  11. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement