SaveBoolean (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 - "</code>" to "</SyntaxHighlight>" |
||
Line 17: | Line 17: | ||
end | end | ||
end) | end) | ||
</ | </SyntaxHighlight>}} | ||
==See Also== | ==See Also== |
Revision as of 03:53, 27 April 2023
SaveBoolean( string key, bool value ) | |
Returns | nil |
Description: | Saves a boolean value that can be reloaded from any server via LoadBoolean. |
Member of: | Player |
Example
This example will save true as the value of the key 'HasPlayed' everytime a player leaves.
game.Players.PlayerRemoving:connect(function(player)
if player.DataReady then -- To make sure the data is ready.
player:SaveBoolean('HasPlayed', true) -- Save the boolean.
end
end)