local textLabel = script.Parent
local placeVersion = tostring(game.PlaceVersion)
local split = string.split(placeVersion, "")
placeVersion = ""
for _, num in pairs(split) do
placeVersion ..= num.."."
end
textLabel.Text = string.format("Server version: %s", placeVersion)
This will only work for versions under 10, then it would look like: 1.0.4.5.2 instead of 10.4.5.2
Yes, I realized what was wrong with my post, I’m just used to more strict Programming. The problem is that “PlaceVersion” is just how many updates your place has been through. You would have to make the place version say “v1.3.1.4” yourself or make some code to have it go off of the place version.
local placeVersion = game.PlaceVersion
placeVersion = tostring(placeVersion)
local otherThing = ""
for i = 1 , #placeVersion do
otherThing = otherThing..placeVersion[i].."."
end
otherThing = otherThing:Sub(1 , #otherThing - 1)