Warn (Method): Difference between revisions

From Legacy Roblox Wiki
Jump to navigationJump to search
m Text replacement - "<SyntaxHighlight code="lua">" to "<syntaxhighlight lang="lua">"
Tags: mobile web edit mobile edit
m Text replacement - "</SyntaxHighlight>" to "</syntaxhighlight>"
 
Line 10: Line 10:
<syntaxhighlight lang="lua">
<syntaxhighlight lang="lua">
game:GetService('TestService'):Warn(false, "this action is invalid")
game:GetService('TestService'):Warn(false, "this action is invalid")
</SyntaxHighlight>
</syntaxhighlight>


[[Category:Methods]]
[[Category:Methods]]

Latest revision as of 06:19, 27 April 2023

Warn( bool condition, string description )
Returns nil
Description: If condition is true, prints Warning passed: , followed by description, to the output, in blue text. Otherwise, prints Warning: , followed by description, to the output, in yellow text.
Member of: TestService

Example

This code would print Warning: this action is invalid to the output, in yellow text.

game:GetService('TestService'):Warn(false, "this action is invalid")