That was it! Next time you want to launch cloudy, Just re-run the bootstrapper. It will check for updates
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.
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.
You can enable auto-injection to automatically inject the DLL when Roblox starts:
cxapi.SetAutoInject(true);
Check whether the DLL is currently injected:
bool isInjected = cxapi.GetInjectionStatus();
To run a script on the injected client, use the following method:
cxapi.ExecuteScript("your_script_here");
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.
Terminate the Roblox process if necessary:
CoreFunctions.KillRoblox();