SaveBoolean (Method)

From Legacy Roblox Wiki
Revision as of 16:23, 16 January 2011 by >ArceusInator (example)
Jump to navigationJump to search
Roblox Preliminary:This item is Roblox Preliminary. It is currently locked while the developers test it, but may be released later.
SaveBoolean( String key, Bool value )
Returns nil
Description: Saves a boolean value that can be reloaded from any server via LoadBoolean
In Object: Player
Example
In one server...
game.Players.LocalPlayer:SaveBoolean( testBoolean, true )
In another server...
print( game.Players.LocalPlayer:LoadBoolean( testBoolean ) ) --> true