Advertisement
Guest User

Roblox Kill And Wipeout Leaderboard

a guest
Oct 20th, 2017
5,155
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. game.Players.PlayerAdded:Connect(function(player)
  2. local leaderstats = Instance.new("IntValue",player)
  3. leaderstats.Name = "leaderstats"
  4.  
  5. local kills = Instance.new("IntValue",leaderstats)
  6. kills.Name = "Kills"
  7. kills.Value = 0
  8.  
  9. local wipeouts = Instance.new("IntValue",leaderstats)
  10. wipeouts.Name = "Wipeouts"
  11. wipeouts.Value = 0
  12.  
  13. -- Data saving code goes here if you need it
  14. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement