Answered by
6 years ago Edited 6 years ago
Okay. Let's break it down. After you wait for the player to be added you're going to want to create your leaderstats. In this case, I'm going to make it a folder. Then we're going to want to create an IntValue inside of it called Durability. Then, we're going to find the character of the player. The way it works is it's going to wait for the player to load into the game, we're using Player.Name so it knows we're looking for a model with the name of your player. Then we're going to set the value of the leaderstats to the player's maxhealth.
01 | game.Players.PlayerAdded:Connect( function (Player) |
02 | local leaderstats = Instance.new( "Folder" ) |
03 | leaderstats.Parent = Player |
04 | leaderstats.Name = "leaderstats" |
05 | local durability = Instance.new( "IntValue" ) |
06 | durability.Parent = leaderstats |
07 | durability.Name = "Durability" |
08 | local humanoid = game.Workspace:WaitForChild(Player.Name).Humanoid |
09 | local leaderpoints = Player:FindFirstChild( "leaderstats" ) |
11 | durability.Value = humanoid.MaxHealth |
12 | print (leaderpoints.Durability.Value) |
Edit:
1 | game.Players.PlayerAdded:Connect( function (Player) |
2 | local humanoid = game.Workspace:WaitForChild(Player.Name).Humanoid |
4 | local leaderpoints = Player:FindFirstChild( "leaderstats" ) |
6 | humanoid.MaxHealth = leaderpoints.Durability.Value |
7 | print (leaderpoints.Durability.Value) |