SaveNumber (Method)

From Legacy Roblox Wiki
Revision as of 19:13, 28 February 2012 by >Itunes89 (→‎Example)
Jump to navigationJump to search
SaveNumber( string key, float value )
Returns nil
Description: Saves a number value that can be reloaded from any server via LoadNumber. The DataCost taken up by a saved number can be removed by saving 0 as the value.
Member of: Player


Example

This code would save the number 5 to the key "Number" when a player leaves:

game.Players.PlayerRemoving:connect(function(player) player:WaitForDataReady() player:SaveNumber("Number", 5) end)

See Also