Lua:showMessage

From Cheat Engine
Revision as of 23:53, 10 July 2025 by Leunsel (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
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