Im new to scripting and cant figure out why this script wont give the player a point, Thanks.
script.Parent.Touched:Connect(function(hit)
if hit.Parent:FindFirstChild("Humanoid") then
local leaderstats = hit.Parent:FindFirstChild("leaderstats")
local Score = leaderstats:FindFirstChild("Score")
Score.Value = Score.Value + 1
end
end)
** You are now Level 1! **