Advertisement
spidey_v6

wdaawdwad

Nov 13th, 2019
110
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. local gmt = getrawmetatable(game)
  2. local old = gmt.__index
  3.  
  4. gmt.__index = function(self, key)
  5. if key == "GetObjects" or key == "getobjects" then
  6. return function(self, id) return GetObjects(id) end
  7. end
  8. if key == "HttpGet" or key == "HttpGetAsync" then
  9. return function(self, url, async) return DLS(url) end
  10. end
  11. return old(self, key)
  12. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement