RobloxScripterAI
Discord ↗
Link Copied to Clipboard
×
"change the text of the ui to the latest time the game got updated"
-- local script (StarterGUI) local player = game.Players.LocalPlayer local screenGui = Instance.new("ScreenGui", player.PlayerGui) local background = Instance.new("Frame", screenGui) background.BackgroundColor3 = Color3.fromRGB(0, 0, 0) local timeLabel = Instance.new("TextLabel", background) timeLabel.TextColor3 = Color3.fromRGB(255, 255, 255) timeLabel.BackgroundColor3 = Color3.fromRGB(0, 0, 0) timeLabel.UICorner = 5 -- Function to get the last updated time of the game function getLastUpdatedTime(gameId) local httpService = game:GetService("HttpService") local response = httpService:GetAsync("https://api.roblox.com/Marketplace/ProductInfo?assetId=" .. gameId) local data = httpService:JSONDecode(response) return data.Updated end -- Set the text of the label to the last updated time of the game timeLabel.Text = "Last Updated: " .. getLastUpdatedTime(game.PlaceId)