Done (Method): Difference between revisions

From Legacy Roblox Wiki
Jump to navigationJump to search
>JulienDethurens
Created page with "<onlyinclude>{{Method |name = Done |description = Prints <samp>Testing Done</samp> to the output, in <span style="color: blue;">blue</span> text. |obj..."
 
m Text replacement - "</SyntaxHighlight>" to "</syntaxhighlight>"
 
(8 intermediate revisions by 2 users not shown)
Line 1: Line 1:
<onlyinclude>{{Method
<onlyinclude>{{Method
|name                = Done
|name                = Done
|description          = Prints <samp>Testing Done</samp> to the output, in <span style="color: blue;">blue</span> text.
|description          = Prints <samp style="color: blue;">Testing Done</samp> to the output, in blue text.
|object              = TestService
|object              = TestService
}}</onlyinclude>
}}</onlyinclude>
Line 7: Line 7:
==Example==
==Example==
This code would print <samp>Testing Done</samp> to the output, in blue text.
This code would print <samp>Testing Done</samp> to the output, in blue text.
<code lua>
<syntaxhighlight lang="lua">
game:GetService('TestService'):Done()
game:GetService('TestService'):Done()
</code>
</syntaxhighlight>


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

Latest revision as of 04:39, 27 April 2023

Done( )
Returns nil
Description: Prints Testing Done to the output, in blue text.
Member of: TestService

Example

This code would print Testing Done to the output, in blue text.

game:GetService('TestService'):Done()