Lua:showMessage

From Cheat Engine
Jump to navigation Jump to search

function showMessage(Text)

Displays a simple message box with the given text and an OK button.

Function Parameters

Parameter Type Description
Text String The message to display in the message box.

Examples

showMessage("Hello, world!")

local name = "Player"
showMessage("Welcome, " .. name .. "!")

See Also