Its supposed to add 1 point to the leader board every time you jump. The problem is in the title.
1 | local JumpValue = game.Players.LocalPlayer.leaderstats.Currency.Value |
2 | local player = game.Players.LocalPlayer |
3 | local Char = player.Character |
4 | local Humanoid = Char.Humanoid |
5 |
6 | Humanoid:GetPropertyChangedSignal( "Jump" ):Connect( function () |
7 | JumpValue = JumpValue + 1 |
8 | end ) |
1 | local JumpValue = game.Players.LocalPlayer.leaderstats.Currency |
2 | local player = game.Players.LocalPlayer |
3 | local Char = player.Character |
4 | local Humanoid = Char.Humanoid |
5 |
6 | Humanoid.Jumping:Connect( function () |
7 | JumpValue.Value = JumpValue.Value + 1 |
8 | end ) |
This should work. Make sure it's a regular script/ServerScript inside ServerScriptService
.
1 | game:GetService( "Players" ).PlayerAdded:Connect( function (player) |
2 | player.CharacterAdded:Connect( function (character) |
3 | character.Humanoid.Jumping:Connect( function () |
4 | player.leaderstats.Currency.Value = player.leaderstats.Currency.Value + 1 |
5 | end ) |
6 | end ) |
7 | end ) |
The PlayerAdded
event fires when a player is added to the game, the CharacterAdded
event fires when the player's character is added, and the Jumped
event fires when the player jumps.