|
| 10 Jul 2016 10:11 PM |
So here is the code,
/* ** Event codes */ #define LUA_HOOKCALL 0 #define LUA_HOOKRET 1 #define LUA_HOOKLINE 2 #define LUA_HOOKCOUNT 3 #define LUA_HOOKTAILRET 4
/* ** Event masks */ #define LUA_MASKCALL (1 << LUA_HOOKCALL) #define LUA_MASKRET (1 << LUA_HOOKRET) #define LUA_MASKLINE (1 << LUA_HOOKLINE) #define LUA_MASKCOUNT (1 << LUA_HOOKCOUNT)
typedef struct lua_Debug lua_Debug; /* activation record */
/* Functions to be called by the debuger in specific events */ typedef void (*lua_Hook) (lua_State *L, lua_Debug *ar);
LUA_API int lua_getstack (lua_State *L, int level, lua_Debug *ar); LUA_API int lua_getinfo (lua_State *L, const char *what, lua_Debug *ar); LUA_API const char *lua_getlocal (lua_State *L, const lua_Debug *ar, int n); LUA_API const char *lua_setlocal (lua_State *L, const lua_Debug *ar, int n); LUA_API const char *lua_getupvalue (lua_State *L, int funcindex, int n); LUA_API const char *lua_setupvalue (lua_State *L, int funcindex, int n);
LUA_API int lua_sethook (lua_State *L, lua_Hook func, int mask, int count); LUA_API lua_Hook lua_gethook (lua_State *L); LUA_API int lua_gethookmask (lua_State *L); LUA_API int lua_gethookcount (lua_State *L);
struct lua_Debug { int event; const char *name; /* (n) */ const char *namewhat; /* (n) `global', `local', `field', `method' */ const char *what; /* (S) `Lua', `C', `main', `tail' */ const char *source; /* (S) */ int currentline; /* (l) */ int nups; /* (u) number of upvalues */ int linedefined; /* (S) */ int lastlinedefined; /* (S) */ char short_src[LUA_IDSIZE]; /* (S) */ /* private part */ int i_ci; /* active function */ };
/* }====================================================================== */
Help? |
|
|
| Report Abuse |
|
Sir_ka
|
  |
| Joined: 23 Apr 2015 |
| Total Posts: 1646 |
|
|
| 10 Jul 2016 10:28 PM |
--That's not even lua lmfao here's a script that will make a brick transparent
game.Workspace.BRICKNAMEHERE.Transparency = 1 --enjoy
|
|
|
| Report Abuse |
|
SerGregor
|
  |
| Joined: 17 Jul 2010 |
| Total Posts: 7957 |
|
| |
|
| 10 Jul 2016 10:30 PM |
| ignore meta he's a 13 year old kid who is bullied at school and feels empowered when he trolls forums, he thinks he is funny with this fake persona he plastered to himself, even though anyone with more brain cells than the average hamster can see through it. |
|
|
| Report Abuse |
|
Sir_ka
|
  |
| Joined: 23 Apr 2015 |
| Total Posts: 1646 |
|
|
| 10 Jul 2016 10:35 PM |
If he wants to troll let him he's not hurting anyone.
|
|
|
| Report Abuse |
|