Advertisement
xXCrystalKittensXx

Service

Apr 19th, 2021
553
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.24 KB | None | 0 0
  1. local proxy = newproxy(true)
  2. local mt = getmetatable(proxy)
  3. mt.__index = function(self, index)
  4.     local success, result = pcall(function()
  5.         return game:GetService(index)
  6.     end)
  7.     if (success) then
  8.         return result
  9.     end
  10. end
  11. return proxy
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement