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!");
}
}
Replied
so how can i use this?
i don't know any coding btw...
Cancel
Post
Replied
oo sounds nice..
Cancel
Post
JustMarie#0709
Â
Users viewing this thread:
( Members: 0, Guests: 1, Total: 1 )
Cancel
Post