I put the script in a Zombie that gets cloned into workspace its in a regular script I also tried it in a local script but it didn't work does anyone know whats wrong?
1 | local player = game.Players.LocalPlayer |
2 | local leaderstats = player:FindFirstChild( "leaderstats" ) |
3 | local kill = leaderstats.Kills.Value |
4 |
5 | if script.Parent.Health = = 0 then do |
6 | kill.Value = kill.Value + 1 |
7 | end |
8 | end |
First you called value 2 times, and 2nd you can't use .value inside of a value and 3rd your using "then do" instead of using then, and also 4th you have to use a local script inside of the player to use "LocalPlayer" so you'll have to set up remoteevent to change the value, so it'll have to be like this:
1 | local player = game.Players.LocalPlayer |
2 | local leaderstats = player:FindFirstChild( "leaderstats" ) |
3 | local kill = leaderstats.Kills |
4 |
5 | if script.Parent.Health = = 0 then |
6 | kill.Value = kill.Value + 1 |
7 | end |
8 | end |