I want to make a system when the game updates players will get a 5 second warning then get kicked. i have tried this many times and cant seem to make one a little help?
game:GetService("MarketplaceService"):GetProductInfo(game.PlaceId).Updated
Simply make a infinite loop, like every 1 second check if the game updated.
EXAMPLE:
while wait(1) do if game:GetService("MarketplaceService"):GetProductInfo(game.PlaceId).Updated == true then --some code end end