cPlaceName

Gets the current Roblox Place name of the active game session. Returns a string representing the Place name, or null if not in a game.

Usage:

Api.misc.cPlaceName;

Example:

string placeName = Api.misc.cPlaceName; // Gets the current Roblox Place name
Console.WriteLine(placeName != null ? $"Current Game: {placeName}" : "Not in a game");

Last updated