LoadBoolean (Method): Difference between revisions

From Legacy Roblox Wiki
Jump to navigationJump to search
>JulienDethurens
No edit summary
m Text replacement - "<SyntaxHighlight code="lua">" to "<syntaxhighlight lang="lua">"
 
(5 intermediate revisions by 2 users not shown)
Line 2: Line 2:
|name                = LoadBoolean
|name                = LoadBoolean
|arguments            = {{type|string}} <var>key</var>
|arguments            = {{type|string}} <var>key</var>
|description          = Returns a {{type|boolean}} value that was previously saved to the player via [[SaveBoolean (Method)|SaveBoolean]] with the same key. Returns false if the key doesn't exist, not nil.
|description          = Returns a {{type|boolean}} value that was previously saved to the player via [[SaveBoolean (Method)|SaveBoolean]] with the same key. Returns {{false}} if the key doesn't exist, not nil.
|object              = Player
|object              = Player
|returns              = {{type|bool}}
|returns              = {{type|bool}}
Line 13: Line 13:
This code would print the {{type|boolean}} value saved to the "Bool" key of every player that enters.
This code would print the {{type|boolean}} value saved to the "Bool" key of every player that enters.


<code lua>
<syntaxhighlight lang="lua">
game.Players.PlayerAdded:connect(function(player)
game.Players.PlayerAdded:connect(function(player)
player:WaitForDataReady()
player:WaitForDataReady()
print(player:LoadBoolean("Bool"))
print(player:LoadBoolean("Bool"))
end)
end)
</code>
</syntaxhighlight>
 
==See Also==
*[[File:Method Icon.png]] [[LoadNumber (Method)|LoadNumber]]
*[[File:Method Icon.png]] [[LoadString (Method)|LoadString]]
*[[File:Method Icon.png]] [[LoadInstance (Method)|LoadInstance]]
 
[[Category:Methods]]
[[Category:Methods]]

Latest revision as of 06:08, 27 April 2023

LoadBoolean( string key )
Returns bool
Description: Returns a boolean value that was previously saved to the player via SaveBoolean with the same key. Returns false if the key doesn't exist, not nil.
Member of: Player


Example

This code would print the boolean value saved to the "Bool" key of every player that enters.

game.Players.PlayerAdded:connect(function(player)
	player:WaitForDataReady()
	print(player:LoadBoolean("Bool"))
end)

See Also