What is wrong with this Script? Touch Event and Leaderstats
game.Players.PlayerAdded:Connect(function(players)
1 | local leaderstats = Instance.new( "Folder" , players) |
2 | leaderstats.Name = "leaderstats" |
4 | local points = Instance.new( "IntValue" ,leaderstats) |
end)
debounce = false
local part = script.Parent
part.Touched:Connect(function(hit)
local humanoid = game.Players:FindFirstChild(hit.Parent.Name)
3 | if debounce = = false then |
6 | local playerPoints = players.leaderstats.points |
7 | playerPoints.Value = playerPoints.Value + 1 |
end)