[ZEP Script] Player 접속 - 채팅 입력 시, 상단 라벨 띄우기 - 유저 닉네임 + 채팅 텍스트 값 띄우기 - Player가 특정 텍스트 값 입력 ➡️ 특정 이벤트 실행 - onSay 📌 채팅 입력 시, 상단 라벨에 띄우기 //플레이어의 채팅 text를 상단 라벨에 띄움 App.onSay.Add(function(player, text){ App.showCenterLabel(text); }) 📌 유저 닉네임 + 채팅 텍스트 값 띄우기 onSay 메소드를 통해 Player의 이름 & 텍스트 값을 받아올 수 있다 //플레이어의 채팅 text를 상단 라벨에 띄움 App.onSay.Add(function(player, text){ let message = player.name + '님이 ' + ..