Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

How to make a sign that shows if server is updated? [SOLVED]

Asked by 7 years ago
Edited 7 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?

local GameID = game.PlaceId;
local Asset = game:GetService("MarketplaceService"):GetProductInfo(GameID) -- My place Id
local tracker = Instance.new("StringValue")
tracker.Name = "UpdateTracker"
tracker.Parent = script
tracker.Value = Asset.Updated

Thanks!

Answer this question