Forum > General >

Acyrlix API // Easy-To-Use // Documentation

Posts: 0

Threads: 0

Joined: ?

Reputation:

Posted

NOTE: I did not make this. This was made by Laxion and DeepPain. I'm just making the thread.

 

Acrylix API

AcrylixAPI Documentation For C#

------------------------------------------------------------------------------------------

Create the 'API' variable:
AcrylixAPI API = new AcrylixAPI();

------------------------------------------------------------------------------------------

------------------------------------------------------------------------------------------

Inject() - Injects to Roblox | Type: void

Example:
private void button1_Click(object sender, EventArgs e)
{
    API.Inject();
}

------------------------------------------------------------------------------------------

Execute(string script) - Executes script | Type: void

Example:
private void button1_Click(object sender, EventArgs e)
{
    API.Execute(textBoxName.Text);
    // or API.Execute("print('Hello World')");
}

------------------------------------------------------------------------------------------

Update() - Updates the DLL | Type: Task

Example:
private async void Form_Loaded(object sender, EventArgs e) // Remember to add the 'async'
{
    await API.Update();
}
Note: Remember to ensure that the 'Update()' task is called on window being loaded. This HAS to be done.

-------------------------------------------------------------------------------------------

IsAPIAttached() - Returns a bool (true or false) | Type: bool

Example:
private void button1_Click(object sender, EventArgs e)
{
    if (API.IsAPIAttached()) // If the API is attached / injected to roblox
    {
        API.Execute(textBoxName.Text);
    }
    else
    {
        MessageBox.Show("You aren't injected to Roblox!");
    }
}

------------------------------------------------------------------------------------------

DoesDLLExist() - Returns a bool (true or false) | Type: bool

Example:
private void button1_Click(object sender, EventArgs e)
{
    if (API.DoesDLLExist() == false) // If 'Acrylix.dll' isn't detected
    {
         MessageBox.Show("DLL is not found!");
    }
}

 

 

Download

Virustotal | Hybrid Analysis | Anyrun

Acrylix Discord

  • 0

JOSHMISTY

Advantages

Posts: 892

Threads: 89

Joined: Jul, 2020

Reputation: 10

Replied

so how can i use this?

 

i don't know any coding btw...

  • 0

Posts: 0

Threads: 0

Joined: ?

Reputation:

Replied

@JOSHMISTY If you don't do coding.....you don't need to use it.

  • 0

TaxiDriver08

JustMarie

Posts: 1188

Threads: 31

Joined: Dec, 2020

Reputation: 6

Replied

oo sounds nice..

  • 0

JustMarie#0709

 

Users viewing this thread:

( Members: 0, Guests: 1, Total: 1 )