Advertisement
miissso

||||||||||I;WN0l00zmvZ30HQ3dGev6w=

Jun 2nd, 2019
183
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.72 KB | None | 0 0
  1. ------------------------------------namecall Init----------------------------------------
  2. print("[No vars]namecall:Not Supported")
  3. ------------------------------------index Init----------------------------------------
  4. __index = function(h,g)if type(g)=="string"then local j=e(h,g)if j then return j end end;return c(h,g)end;
  5. local c = __index;
  6. print("[No vars]index", c)
  7. ------------------------------------newindex Init----------------------------------------
  8. __newindex = newcclosure(function(Obj, Index, Value)
  9. local Return = (((Index == 'OnClientInvoke') or (Index == 'OnInvoke')) and Index) or (MetatableIndex(Obj, Index));
  10. if (typeof(Return) ~= typeof(Value)) and (Return ~= Index) then
  11. return MetatableNew(Obj, Index, Value)
  12. end
  13.  
  14. local InstHook = Hooks.Insts[Obj]
  15. if InstHook then
  16. local Prop = InstHook[Index]
  17. if InstHook.MainWrite or (Prop and Prop[3]) then
  18. return
  19. end
  20. end
  21.  
  22. for Class, Hook in next, (Hooks.Globals) do
  23. if IsA(Obj, Class) then
  24. local ClassHook = Hook[Index]
  25. if Hook.MainWrite or (ClassHook and ClassHook[3]) then
  26. return
  27. end
  28. end
  29. end
  30. return MetatableNew(Obj, Index, Value)
  31. end)
  32. print("[No vars]newindex", __newindex )
  33. ------------------------------------make_writeable Init----------------------------------------
  34. make_writeable=function(m)return setreadonly(m,false)end;
  35. ------------------------------------require----------------------------------------
  36. print(require())
  37. ------------------------------------REQUIRE MESSAGE----------------------------------------
  38. warn("--URGENT!--require function is kinda broken make sure for the first time you execute something with require execute it two times just in case :)--URGENT!--")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement