Question on a roblox api

Is it possible to get placeversion using develop.roblox.com without roblox cookie

Use game.PlaceVersion. Hope it works.

At the moment I do not think you can.

I’d assume so, since you can download assets of any version if they are public.

I’m not sure if the API has an endpoint for places though.

I wanted to make a softshutdown script that could do this

Ah. I made a soft shutdown script, but I simply teleport all players to an external place, wait 1 minute, and then I assume the update is done.

However, it seems like it’s possible.

Take a look at this post:

thats not really what I was looking for

this would probably be the only way

local placeVersion = game.PlaceVersion
textLabel.Text = string.format("Server version: %s", placeVersion)
textLabel.Parent = mainGUI

i haven’t been in studio in a while so not sure if this would work anymore.