cPlaceImage

Gets the thumbnail image URL of the current Roblox Place/Game. Returns a string containing the URL of the game's thumbnail image, or null if not in a game.

Usage:

Api.misc.cPlaceImage;

Example:

string thumbnailUrl = Api.misc.cPlaceImage; // Gets the current Place thumbnail URL
if (thumbnailUrl != null)
{
    BitmapImage thumbnail = new BitmapImage(new Uri(thumbnailUrl));
    Image gameImage = new Image();
    gameImage.Source = thumbnail;
}

Last updated