Can You Guys Help Me Check If I Made Some Error Mistakes?
Can you guys help me? I try to get rid of the Wipe Outs from the leader board and everything works just fine. But I just need you guys to check if I did it correctly or not. Thank you for your time!
001 | print ( "Give KOs & Points For Free!" ) |
005 | function onPlayerRespawn(property, player) |
008 | if property = = "Character" and player.Character ~ = nil then |
009 | local humanoid = player.Character.Humanoid |
012 | humanoid.Died:connect( function () onHumanoidDied(h, p) end ) |
016 | function getKillerOfHumanoidIfStillInGame(humanoid) |
021 | local tag = humanoid:findFirstChild( "creator" ) |
026 | local killer = tag.Value |
027 | if killer.Parent ~ = nil then |
035 | function handleKillCount(humanoid, player) |
036 | local killer = getKillerOfHumanoidIfStillInGame(humanoid) |
037 | if killer ~ = nil then |
038 | local stats = killer:findFirstChild( "leaderstats" ) |
040 | local kills = stats:findFirstChild( "KO's" ) |
041 | local earn = stats:findFirstChild( "Points" ) |
042 | if killer ~ = player then |
043 | kills.Value = kills.Value + 1 |
044 | earn.Value = earn.Value + 100 |
047 | kills.Value = kills.Value - 1 |
048 | earn.Value = earn.Value - 0 |
059 | function Entered(player) |
061 | if player:findFirstChild( "leaderstats" ) ~ = nil then |
062 | player.leaderstats:remove() |
065 | stats = Instance.new( "IntValue" ) |
066 | stats.Parent = player |
067 | stats.Name = "leaderstats" |
069 | local kills = Instance.new( "IntValue" ) |
075 | money = Instance.new( "IntValue" ) |
077 | money.Name = "Points" |
084 | if player.Character ~ = nil then break end |
088 | local humanoid = player.Character.Humanoid |
090 | humanoid.Died:connect( function () onHumanoidDied(humanoid, player) end ) |
093 | player.Changed:connect( function (property) onPlayerRespawn(property, player) end ) |
096 | stats.Parent = player |
101 | game.Players.PlayerAdded:connect(Entered) |
103 | c = game.Players:GetChildren() |