Posted
does anybody know how to detect if exploit is injected
Replied
make it check if the lua namepipes exist
Cancel
Post
I use synapse sometimes
Languages i have experience with: c#, lua, javascript.
Replied
And how do i make it check that?
Cancel
Post
Replied
// You need to make a timer named Timer1
// And a label named StatusLabel
// And have to enable the Timer in the settings of them
private void Timer1_Tick(object sender, EventArgs e)
{
// Checks if the WeAreDevs API is attached
if (!this.api.isAPIAttached())
{
this.StatusLabel.Text = "Status: Nicht mit Roblox verbunden";
this.StatusLabel.ForeColor = Color.Crimson;
}
else
{
this.StatusLabel.Text = "Status: Mit Roblox verbunden";
this.StatusLabel.ForeColor = Color.SpringGreen;
}
Cancel
Post
I Love Unity and C#
Users viewing this thread:
( Members: 0, Guests: 1, Total: 1 )
Cancel
Post