How I can change this script, for made it only for players who has tag "developer" ?
world.beforeEvents.chatSend.subscribe((data) => {
let player = data.sender;
let msg = data.message.toLowerCase();
if (msg === "!apple") {
system.runTimeout(() => {
player.runCommandAsync("give @s apple");
}, 0);
data.cancel = true;
}
});