Advertisement
HowToRoblox

KillsLB

Dec 11th, 2019
14,015
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.20 KB | None | 0 0
  1. game.Players.PlayerAdded:Connect(function(plr)
  2.    
  3.     local stats = Instance.new("Folder", plr)
  4.     stats.Name = "leaderstats"
  5.    
  6.     local kills = Instance.new("IntValue", stats)
  7.     kills.Name = "Kills"
  8.    
  9. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement