SaveBoolean (Method)

From Legacy Roblox Wiki
Revision as of 11:17, 16 April 2011 by >MrNicNac (No longer admin-only.)
Jump to navigationJump to search
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