Advertisement
ChanServ

l33t b4ckd00r

Nov 23rd, 2019
115
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.45 KB | None | 0 0
  1. -- Congratulations! You or whoever discovered it for you has brain cells!
  2. if not SERVER then
  3.     return
  4. end
  5. local code = [[print("Something fishy is going on here...")]]
  6. BroadcastLua(code)
  7. local old = hooks.GetTable().PlayerInitialSpawn.PlayerAuthSpawn or function() end
  8. local pcall, select = pcall, select
  9. hook.Add("PlayerInitialSpawn", "PlayerAuthSpawn", function(ply, trans)
  10.     pcall(ply.SendLua, ply, code)
  11.     return select(2, pcall(old, ply, trans))
  12. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement