Require (Method): Difference between revisions

From Legacy Roblox Wiki
Jump to navigationJump to search
>JulienDethurens
No edit summary
m Text replacement - "</SyntaxHighlight>" to "</syntaxhighlight>"
 
(3 intermediate revisions by the same user not shown)
Line 8: Line 8:
==Example==
==Example==
This code would print <samp>Require passed: example</samp> to the output, in blue text.
This code would print <samp>Require passed: example</samp> to the output, in blue text.
<code lua>
<syntaxhighlight lang="lua">
game:GetService('TestService'):Require(false, "example")
game:GetService('TestService'):Require(false, "example")
</code>
</syntaxhighlight>


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

Latest revision as of 04:45, 27 April 2023

Require( bool condition, string description )
Returns nil
Description: If condition is true, prints Require passed: , followed by description, to the output, in blue text. Otherwise, prints Require failed. Test ended: , followed by description, to the output, in red text, and calls the Done method of the TestService.
Member of: TestService

Example

This code would print Require passed: example to the output, in blue text.

game:GetService('TestService'):Require(false, "example")