Advertisement
Shutupdevs1

asdasdsad

Feb 19th, 2023
29
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. if getgenv().Loaded then return end
  2. getgenv().Loaded = true
  3.  
  4. local data = require(game:GetService("ReplicatedStorage").Remotes)
  5.  
  6.  
  7. local oldE = data.Event
  8. local oldF = data.Function
  9.  
  10. data.Event = function(...)
  11. local res = oldE(...)
  12. rconsoleinfo(res.Name.." = "..(...))
  13. return oldE(...)
  14. end
  15.  
  16. data.Function = function(...)
  17. local res = oldF(...)
  18. rconsoleinfo(res.Name.." = "..(...))
  19. return oldF(...)
  20. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement