This is a Roblox exploiting API based off the WeAreDevs API that supports the UWP version of Roblox! There is no key system and it auto-updates to the latest version!
tldr: wearedevs api but it bypasses byfron
To use this you need to use the UWP (Universal Windows Platform) version of the Roblox app which doesn't have Byfron. To do this, get Roblox from the Microsoft store!
- Create a new Visual Studios project. I recommend choosing the
Windows Form App (.NET Framework)
- Add the exploit API as a reference
- Start using the API! Example:
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
using Hovac_API;
namespace TutorialExploit
{
public partial class Form1 : Form
{
ExploitAPI exploitAPI = new ExploitAPI();
public Form1()
{
InitializeComponent();
}
private void button2_Click(object sender, EventArgs e)
{
exploitAPI.LaunchExploit(); // injects into roblox
}
private void button1_Click(object sender, EventArgs e)
{
exploitAPI.SendLuaScript(richTextBox1.Text); // runs script from text box
}
}
}
Your exploit will now work and auto-updates to the lastest version!
The code for the actual injecting wasn't done by me.
The actual important DLLs are taken from WeAreDev's CDN, however for some reason they haven't updated WeAreDevs API to do this so I just did it myself.
You can complain this project is skidded but thats the point, its just a UWP port for the WeAreDevs API.