Categories > Coding > Lua >

[REL] Exploit Functions Printing

PoopMaster

SoundInfinity

noticed

Posts: 120

Threads: 23

Joined: Jul, 2019

Reputation: 9

Posted

Basically prints the most epic libraries and functions of an exploit:

 

print 'Loading...';

local foreach = function(t, e)

if type(t) == 'table' and type(e) == 'function' then

for i, v in next, t do

pcall(e, i, v);

end;

end;

end;

 

local pvar = function(k, v)

print(type(v) .. ' - ' .. tostring(k));

end;

 

print 'table - debug';

foreach(debug, pvar);

 

print 'table - os';

foreach(os, pvar);

 

print 'table - custom functions';

local custom_functions = {}

custom_functions['setreadonly'] = setreadonly;

custom_functions['getrawmetatable'] = getrawmetatable;

custom_functions['setclipboard'] = setclipboard;

custom_functions['getclipboard'] = getclipboard;

 

foreach(custom_functions, pvar);

 

print 'printing opinions...';

if type(os) ~= 'table' then

print'This exploit is ass don\'t use it.';

else

print'Epic Exploit you should rate it a 10/10!';

end;

 

print'Done.'

  • 0

Proud creator of: WRD+

Posts: 4

Threads: 1

Joined: Apr, 2019

Reputation: 0

Replied

hi can someone help me with something in visual studio at my exploit first thing i want to make a button that when i press it a gui will pop up 

and next thing is how the hell i can put my exploit at this website hope u will help me

  • 0

Posts: 257

Threads: 112

Joined: Jun, 2018

Reputation: 5

Replied

good release.

  • 0

Exploits I own: Synapse, Electron

Scripts I've made: Aimbot GUI, Draco Admin

Scripts I'm working on: More game ESPs

Users viewing this thread:

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