How can I make MaxHealth equal to Endurance?
^ Title
I'd like to make my Max Health equal to the player's endurance
In the workspace there is a script, script contains as follows:
1 | game.Players.PlayerAdded:connect( function (player) |
2 | player.CharacterAdded:connect( function (character) |
3 | character.Humanoid.MaxHealth = "What Here?!" |
The what here part is what I'd like to change, I'm not sure how to refer to Endurance.Value
In the ServerScriptService there is the system script which currently contains (working code):
01 | game.Players.PlayerAdded:connect( function (Player) |
02 | local Data = Instance.new( "IntValue" ,Player) |
04 | local XP = Instance.new( "IntValue" ,Data) |
07 | local Level = Instance.new( "IntValue" ,Data) |
10 | local Strength = Instance.new( "IntValue" ,Data) |
11 | Strength.Name = "Strength" |
13 | local Endurance = Instance.new( "IntValue" ,Data) |
14 | Endurance.Name = "Endurance" |
16 | local Agility = Instance.new ( "IntValue" ,Data) |
17 | Agility.Name = "Agility" |
20 | game.Players.PlayerAdded:connect( function (player) |
21 | player.CharacterAdded:connnect( function (character) |
22 | character.Humanoid.MaxHealth = Endurance |
26 | XP.Changed:connect( function () XPChange(Player,XP,Level,Endurance) end ) |
30 | function XPChange(Player,XP,Level,Endurance) |
31 | if XP.Value > = Level.Value* 10 + 100 then |
33 | Level.Value = Level.Value + 1 |
34 | Endurance.Value = Endurance.Value + 50 |