Categories > Coding > C# >

what exploit api allows custom lua functions

New Reply

Posts: 3

Threads: 1

Joined: Mar, 2023

Reputation: 0

Posted

ok so i have been looking for a exploit api that allows me to create custom lua functions in c# and cannot find any.

  • 0

  • Comment

Posts: 0

Threads: 0

Joined: ?

Reputation:

Replied

im pretty sure that doesnt exist. someone could prove me wrong, however it is infact possible to make custom lua functions in LUA how ironic i dont know if thats the case for c# tho, im shi at c#

  • 1

  • Comment

Posts: 3

Threads: 1

Joined: Mar, 2023

Reputation: 0

Replied

ok not what i meant i meant like how some executors have custom fucntions like `mouse1click()` which is definitly not possible in lua

 
  • 0

  • Comment

Murz

PixelPenguin

Posts: 252

Threads: 20

Joined: Jul, 2021

Reputation: 29

Replied

@tymp,

 

MouseButton1Down is a real Luau function, (https://create.roblox.com/docs/reference/engine/classes/GuiButton#MouseButton1Down)

 

If that is what you're talking about.

 

I think you mean something like, fireclickdetector. Right?

  • 0

  • Comment

 

Ty for rep: Swiney, Byoke, Lion, Locust, Waves, Weeb, Nickk, darkn, Atari, CubeFaces, Lux14, Rice, Delta, Syraxes, Aeon, Jordan, Pluto, and Hiroku!

P.S, I like cats better too!

heckerdude

heckerdude

Posts: 126

Threads: 16

Joined: Aug, 2022

Reputation: 6

Replied

What do you mean custom lua functions in C#? They can be both registered in C++ and in Lua. I don't think there's a way in C#. If I am wrong, you must explain more on your answer.

 

If you want to create custom lua functions in C# you must tell the API name or exploit DLL name you are trying to use.

Anyways, if you want to do it in lua (but run in C#):

function printidentity()
--code goes here
end

local printid = printidentity

printid()
  • 0

  • Comment

Added

@Murz, He is talking about registering functions onto Lua Environment in C#. Although, i dont think its possible.

  • 0

  • Comment

hecker dude ngl i hecked 5 ips in 1 second also luaU_loadbiglongjuicythingy(rL);

Posts: 1658

Threads: 80

Joined: Feb, 2020

Reputation: 87

Replied

@heckerdude I missed this (that's why it's a late reply) but I wanted to provide an unsolicited explaination in on how this can be done in C#.

 

If you wanted low level access (and complete C#), you'd have to figure out how to make an external cheat to do what you need. It's probably possible but slow and not worth the effort imo.

 

If you want something simpler, you technically still need to do it from the internal side, but what you can do is use a signaling or pipe server to translate calls between C# and Lua using a C++ client. It's not the greatest idea, however. It's a slow way to do this because it requires IPC.

 

Of course, registration would still have to be done on the low level unless there's an exposed function like getgenv.

 

This is possible, because I've done this before with WRD API by setting up an init script and a signaling server on C# to add filesystem functions before WRD API supported them officially. Unfortunately, my project is long gone and doesn't exist except for maybe on the downloads folder on a 12 year old kid's laptop. I personally deleted it and I doubt it's still available cor download online.

Comments

tymp 0 Reputation

Commented

this is exactly what i meant 

  • 0

  • 0

  • Comment

Login to unlock the reply editor

Add your reply

Users viewing this thread:

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