import { system, world} from "@minecraft/server" async function testIfEmoting() { let players = world.getAllPlayers(); players.forEach((player, i) => { console.log(player.isEmoting); }) } system.runInterval(testIfEmoting, 10);