would roblox vaporize my account if i made the user paste in a link in a gui textbox and said link gets sent to the server?
i have an in-game luau executor, but since its torture to get bytecode compiled ingame (looking at you LuauInLuau…), i came up with a solution where the player spins up a server on their machine that compiles luau sourcecode and returns bytecode
all the player has to do is get this running, and a cloudflare tunnel link gets provided that they paste ingame
when they enter some luau code into a textbox and click execute, the source code gets sent to the server along with the tunnel link
the server then sends an http request to that link, and out comes bytecode, which is sent back to the client to get executed using Fiu or something
i’m not sure if the link part is going to get me moderated. in no way will i instruct the user on how to use this, its pretty much just a obscure thing me and my friends will use to emulate exploits safely.
looking for someone who’s well versed with roblox’s ToS to lmk if this is fine
EDIT FOR CLARIFICATION:
this tool is more of a “scripting sandbox” than anything else, and is entirely contained within the game
it has no actual access to any restricted apis either, its literally just a luau ide you could say with some extra features mimicking exploits