📜  roblox 玩家聊天事件 - 任何代码示例

📅  最后修改于: 2022-03-11 14:58:58.337000             🧑  作者: Mango

代码示例1
game.Players.PlayerAdded:Connect(function(player)
  player.Chatted:Connect(function(msg)
        -- do stuff with msg and player
        --example below
        print(player.Name.." said "..msg)
  end)
end)