DataReady (Property)

(Redirected from DataReady)
DataReady
Property Bool DataReady
Description Becomes true when player has connected to ROBLOX Data-Sharing.
Member of Player


game.Players.PlayerAdded:connect(function(newPlayer)
    newPlayer:WaitForDataReady() -- Wait for player to connect to ROBLOX Data-Sharing
    print(newPlayer.Name.. " is eligible to save/load data to/from!")
end)