LoadBoolean (Method): Difference between revisions
From Legacy Roblox Wiki
Jump to navigationJump to search
m Text replacement - "<code lua>" to "<SyntaxHighlight code="lua">" |
m Text replacement - "</SyntaxHighlight>" to "</syntaxhighlight>" |
||
Line 18: | Line 18: | ||
print(player:LoadBoolean("Bool")) | print(player:LoadBoolean("Bool")) | ||
end) | end) | ||
</ | </syntaxhighlight> | ||
==See Also== | ==See Also== |
Revision as of 04:39, 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)