uhhh how are you meant to make a daily shop with this since it doesnt explain how do you use it for guis
I understand that for accurate time synchronization from Google to Roblox, you need to account for network latency by adding a response delay variable that calculates the round-trip time and use half of it to adjust the time. But you should be adding the responseDelay variable to the originTime, not subtracting it.
return originTime + tick()-responseTime + responseDelay
Roblox does this with ‘GetServerTimeNow’.
is there anyway to forcefully reset the time? because i need it for testing purposes.
Thank you so much! I created a weekly shop system using this. :3
Thanks for creating this guide.
“Make sure that http requests are enabled!”
It is already enabled and it’s still not working.
can someone help me ? how can the shop be the same in every server, i dont understand im sorry
Curious but how necessary is the “SyncTime” module anymore now that we have DateTime? I feel as though it may have been conceptualised before DateTime was available to developers but it should already be naturally synced to an extent reasonable enough to make a time-seeded shop like this, and you don’t suffer the (edge case) bottle neck of a potential failed call to Google to extract the header. It’s also using tick which is deprecated.