roblox have game version history tab where you can revert version or see the version number
i wanna make textlabel that shows version number from roblox servers
script.Parent.Text = "Version:".." "..game.PlaceVersion -- script.Parent == the textlabel and then u can choose if u want to write something before version
You can read about Place Version here.
-- display the version number local placeVersion = game.PlaceVersion script.Parent.Text = string.format("Server version: %s", placeVersion) -- you might need to change this if your script is not parented to the TextLabel.