Cloudy API Documentation
  • SETUP
    • Introduction
    • Setting Up Your Project
    • Update Log
    • Cloudy API Tutorial
    • Credits
  • FUNCTIONS
    • AutoInject
    • Inject
    • Execute
    • GetClientsList
    • RegisterExecutor
    • IsInjected
    • AutoSetup
    • disableSecurity
    • isRobloxOpen
    • CheckRobloxVersion
    • GetUsername
    • killRoblox
    • AskAi
    • Cleanres
    • SetDiscordRpc
    • IsAutoInjectEnabled
  • credits
  • GetUserIdFromUsername
  • GetAvatar
  • SetScriptJS
  • AddTabJS
  • GetDiscordUsername
  • cPlaceId
  • cPlaceName
  • cPlaceImage
  • CHAT FUNCTIONS
    • ConnectToServer
    • ReceiveMessages
    • SendMessage
    • Disconnect
    • OnMessageReceived
    • OnError
    • Messages
Powered by GitBook
On this page

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;
}
PreviouscPlaceNameNextConnectToServer

Last updated 1 month ago