Hi I’m The_BorwnDoggy, this is my first post on this forum. I needed some help with making my kills count on my leaderstats. The reason its not working is because I’m making an FPS game, (my first game), and the way the NPCs are kill is with a gun, which is a tool.
Here the code I have for the leaderstats which as a said doesn’t work.
--
local function addBoard(player)
local board = Instance.new("Folder", player)
board.Name = "leaderstats"
local kills = Instance.new("IntValue", board)
kills.Name = "Kills"
local deaths = Instance.new("IntValue", board)
deaths.Name = "Deaths"
end
local function onCharacterRemoving(char)
local player = game.Players:GetPlayerFromCharacter(char)
local deaths = player.leaderstats.Deaths
deaths.Value = deaths.Value + 1
end
local function onPlayerAdded(player)
addBoard(player)
player.CharacterRemoving:Connect(onCharacterRemoving)
end
game.Players.PlayerAdded:Connect(onPlayerAdded)
I would be extremely happy if anyone could help me with this