We are still working on Kyvorn Execute. Get the latest details and updates in the iBallexus Discord server. The information found here is only here for informational purposes and will change.

What is Kyvorn Execute?

Imagine the ability to execute scripts directly from a script library without ever having to enter your executor. If your executor is Internal and supports Kyvorn Execute, you may be able to automatically connect on Roblox launch.

Image above is a mockup and will look nothing like the final product. You are also able to directly connect to your executor and execute scripts directly from the Kyvorn Editor. You’ll be able to see some basic information about your executor and execute scripts.

Kyvorn Execute Client Code

Put this code on your client in order to have Kyvorn Execute always enabled. Code examples are Kyvorn Executev1.0.0

Some of the code might not work since I don’t fully know Rust or C#, so if there are any community rewrites that do work, please let me know as I will put them on this page :)

{
  "executorInfo": {
    "executorname": "My Executor",
    "version": "1.0.0",
    "port": "42022",
    "executeversion": "1.0.0"
  }
}

Setting your executor information

Once you’ve put the proper file inside of your client, you’ll need to make sure it runs on start and you have executorinfo.json included. You should change the executorname and version variables inside of the executorinfo.json file you have downloaded. For example, if your executor is called SkiddieScript v1.0.7 you’d fill out the JSON like this:

{
  "executorInfo": {
    "executorname": "SkiddieScript",
    "version": "1.0.7",
    "port": "42022",
    "executeversion": "1.0.0"
  }
}

Keep executeversion as it is - this will be updated with Kyvorn Execute, and is used to inform the user of the Kyvorn Execute version your executor is using.

Executing from your web browser

You’ll be able to execute scripts automatically from the URL /app/execute.html?sid=d90b09d0-fa30-45df-88f2-79b8a9cfb55c, where the sid query is the post ID. It will automatically get the script content and send the request to your client.

Branding

Congratulations! You just included Kyvorn inside of your application! Now, you are able to include the special Uses Kyvorn Execute badge onto your executor’s website or Credits/Settings page. You can download it on our main page here.