cPlaceId
Gets the current Roblox Place ID of the active game session. Returns a string representing the Place ID, or null if not in a game.
Usage:
Api.misc.cPlaceId;
Example:
string placeId = Api.misc.cPlaceId; // Gets the current Roblox Place ID
Console.WriteLine(placeId != null ? $"Current Place ID: {placeId}" : "Not in a game");
Last updated