I'm assuming you understand how to use Data Store efficiently so I'll just explain how to make a visual example of the player's data. We'll be using leaderstats as to answer this question, BUT keep in mind that you can also show the player's data through many other ways too. In order to set up our leaderstats, we'll want to set a function that fires when a player joins. This can be done through game.Players.PlayerAdded:Connect(function(player)
. Next, we will add a model named "leaderstats" to the player and then add a values inside that model that represents the Data Store Values. Take this for an example,
01 | local PrimaryData = game:GetService( "DataStoreService" ):GetDataStore("DataStore) |
02 | game.Players.PlayerAdded:Connect( function (player) |
03 | local LeaderStatsModel = Instance.new( "Model" ,player) |
04 | if PrimaryData:GetAsync( "user_" ..player.UserId) ~ = nil then |
05 | local NewValue = Instance.new( "NumberValue" ,LeaderStatsModel) |
06 | NewValue.Name = "Insert whatever you want here" |
07 | NewValue.Value = PrimaryData:GetAsync( "user_" ..player.UserId) |