How to make a sign that shows if server is updated? [SOLVED]
Asked by
8 years ago Edited 8 years ago
EDIT: I found a way how to do it guys ;D
So I think there is one in MM2 and it tells you on a sign either the server is the most updated or outdated. I would like to replicate this. I have tried using market place service but is doesn't work?
1 | local GameID = game.PlaceId; |
2 | local Asset = game:GetService( "MarketplaceService" ):GetProductInfo(GameID) |
3 | local tracker = Instance.new( "StringValue" ) |
4 | tracker.Name = "UpdateTracker" |
6 | tracker.Value = Asset.Updated |
Thanks!