I want to make a Text Label that shows the publish number of the game this can be helpful in case a player reports an issue I can check to see what version of the game that issue was on if they provide in-game screenshots. I have looked for something relating to this everywhere but cant seem to find anything can someone help?
3 Likes
Honestly, i haven’t found anything about that too when i tried adding it into my game, but something really simple i made to differ the version was:
First update - Change the text label’s text to “v1.0”, indicating the game’s version is 1.0
Second update - Before publishing the update, change the text label’s text to “v1.1”, indicating that the server is updated with the new version.
It might be a bit tedious because it’s done manually, but this is what i normally used to do.
Oh, well this might be a lot simple then. Completely forgot this existed. My bad.
2 Likes
Use place version.
print(game.PlaceVersion)
5 Likes
thanks so much!
I did:
script.parent.Text= game.PlaceVersion
for a text label