How to Download Cloudy

  1. Go to our Download Page
  2. Select a Plan
  3. Download the Bootstrapper
  4. Run The Bootstrapper (as administrator)
  5. Wait for the Setup to be finished
  6. That was it! Next time you want to launch cloudy, Just re-run the bootstrapper. It will check for updates

API DOCUMENTATION

The CXAPI provides powerful functionality for managing DLL injection into Roblox processes. Below you will find a detailed guide on how to utilize the API effectively.

Features

  • Automatic DLL injection into Roblox processes
  • Roblox Script Developing with nearly all functions available
  • 86% UNC
  • Level 3 Executor

API Usage

To begin using the API, ensure that all necessary DLL files are downloaded. The API will automatically manage DLLs and handle injection when Roblox is detected running.

Enable Auto-Inject

You can enable auto-injection to automatically inject the DLL when Roblox starts:

cxapi.SetAutoInject(true);

Check Injection Status

Check whether the DLL is currently injected:

bool isInjected = cxapi.GetInjectionStatus();

Execute Script

To run a script on the injected client, use the following method:

cxapi.ExecuteScript("your_script_here");

Inject DLL Using CoreFunctions

The CoreFunctions.Inject(); method provides an easy-to-use interface for injecting the DLL into Roblox. This method checks if Roblox is running and automatically handles the injection:

CoreFunctions.Inject();

After injection, it ensures the DLL stays loaded as long as Roblox is running. It also performs error handling in case of failed injections.

Kill Roblox Process

Terminate the Roblox process if necessary:

CoreFunctions.KillRoblox();