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

How do I make a Update Notification?

Asked by 6 years ago

I am making an admin script and I want some way to make a notification that tells whoever got my admin script to reinsert the script to update it. I don't want the full script can anyone just tell me how to? By the way, anyone who wants my admin script can get it here: https://www.roblox.com/catalog/946796347/redirect

For example, I update my Admin Script and when a user joins their game and they have my admin script it'll show a hint saying to reinsert the Admin Script.

1 answer

Log in to vote
0
Answered by 6 years ago
Edited 6 years ago

A good way to do this is to use the service: "MarketplaceService" so first, make a model that you can take like this: https://www.roblox.com/library/910195293/Mining-Tycoon-Shut-Down and then use this type of script. (would only work in game, not roblox studio)

local asset = game:GetService("MarketplaceService"):GetProductInfo(--Model Id)
if asset.Description == "v1" then
else
--Do stuff
end
0
Say I have other stuff in the desc of my model like "AwesomeBuilderAdminCommands Version: V1" Would the script still work? AwesomeBuilder346 11 — 6y
0
Probs not, you would have to make a separate model that no-one can take. outlook1234567890 115 — 6y
Ad

Answer this question