MessageBox - Debug

From the Fallout4 CreationKit Wiki
(Redirected from Debug.MessageBox (Papyrus))
Jump to navigation Jump to search

Member of: Debug Script

Displays a single-button OK message box containing the specified text.

Syntax[edit | edit source]

Function MessageBox(string asMessageBoxText) native global debugOnly

Parameters[edit | edit source]

  • asMessageBoxText: The text that should be displayed in the message box.

Return Value[edit | edit source]

None

Examples[edit | edit source]

; Display the class 'hello world' box
Debug.MessageBox("Hello, world!")

See Also[edit | edit source]