say
Posts a message to the game chat.
player.say("Hi!");
Parameters
- message: the message to display in the chat, eg: “Hi!”
Example
Display a warning message when a chicken dies. The say block is run when the mobs:on Mob Killed event happens.
mobs.onMobKilled(CHICKEN, () => {
player.say("Be nice to the chickens!")
})