Thank you I think the script you have given me is truthful, however, I want to ask about this:
Usually they never ask me that since I have 2 other point systems. But why didn’t it change. I replaced everything with player.leaderstats.Points.Value to player.leaderstats.clean.Value
I just realized instead of adding it as clean I wrote it off as clea. I do apologize for being a burden to your time. Thank you for your help and support.
function onPlayerEntered(newPlayer)
wait(.5)
local stats = Instance.new("IntValue")
stats.Name = "leaderstats"
local score = Instance.new("IntValue")
score.Name = "clean"
score.Value = 0
score.Parent = stats
stats.Parent = newPlayer
end
game.Players.ChildAdded:connect(onPlayerEntered)