Is there any Roblox approved way to get the player ping (I need it for some client sided lag compensation)
Right now I’ve been using RemoteEvents to just calculate the difference between tick() before and after receiving a signal, but it feels like there should be a better way.
you can also use os.time() as it is always the unix time in UTC
Edit: It does say on the wiki page that it could be a few seconds off though (different time on each system) and is only in seconds…
but then again you would most likely be checking the time both times on the server as the client would be able to change the time at their will (exploiters can modify the return) and also to make sure local time wont get in the way