Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- game.Players.PlayerAdded:Connect(function(player)
- local leaderstats = Instance.new("Folder",player)
- leaderstats.Name = "leaderstats"
- local Wins = Instance.new("IntValue",leaderstats)
- Wins.Name = "Wins"
- Wins.Value = 0
- while wait(5) do
- Wins.Value += 1 -- For testing
- end
- end)
Advertisement
Add Comment
Please, Sign In to add comment