Advertisement
ExodiaForce

exologger

Nov 11th, 2024
12
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. function setup(plr:Player)
  2. plr.Chatted:Connect(function(msg)
  3. print(plr.DisplayName.." (@"..plr.Name.."): "..msg)
  4. end)
  5. end
  6. game.Players.PlayerAdded:Connect(setup)
  7. for i,v in ipairs(game.Players:GetPlayers()) do
  8. setup(v)
  9. end
  10. print("Loaded ExoLogger")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement