This script below does not work, why??
game.Players.PlayerAdded:connect(function(plr) Wins = Instance.new("IntValue") Wins.Parent = plr Wins.Value = 0 end)
Hope this works for you
game.Players.PlayerAdded:connect(function(plr) leaderstats = Instance.new("Model") leaderstats.Parent = plr Wins = Instance.new("IntValue") Wins.Parent = leaderstats Wins.Value = 0 end)