This is suppose to give xp in the leader board if you kill a mob but it dosent work can you tell me what part of this is wrong?
local Humanoid = script.Parent.Bandit --Name of the mob function KILL() local tag = Humanoid:findFirstChild("creator") if tag ~= nil then if tag.Value ~= nil then local Leaderstats = tag.Value:findFirstChild("leaderstats") --Connects to Leaderstats if Leaderstats ~= nil then Leaderstats.XP.Value = Leaderstats.XP.Value + 5 --How much added per kill wait(0.1) script:remove() end end end end Humanoid.Died:connect(KILL)