Advertisement
RyanDaCoder

xx

Sep 15th, 2019
233
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. for i, a in pairs(game.Players:GetPlayers()) do
  2. a.Chatted:connect(function(msg)
  3. warn(a.Name .. ": " .. msg)
  4. end)
  5. end
  6. game.Players.PlayerAdded:connect(function(plr)
  7. plr.Chatted:connect(function(msg)
  8. warn(plr.Name .. ": " .. msg)
  9. end)
  10. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement