Awooslayer699

chat

Mar 27th, 2019
122
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. if game.PlaceId == 843468296 or game.PlaceId == 843495510 or game.PlaceId == 897312463 then
  2.     local pl = game:GetService'Players'
  3.     local plgc = pl:GetChildren()
  4.    
  5.     function newmessage(plyr)
  6.         plyr.Chatted:Connect(function(msg)
  7.  
  8.  
  9.  
  10.             print(plyr.Name..": "..msg)
  11.         end)
  12.     end
  13.  
  14.     for _,v in pairs(plgc)do
  15.         newmessage(v)
  16.     end
  17.     pl.PlayerAdded:Connect(function(per)
  18.         newmessage(per)
  19.     end)
  20. else
  21.     print'Um no. Not work here sorry bud.'
  22. end
Add Comment
Please, Sign In to add comment