Advertisement
MisterH_t

Leaderstats

Jun 12th, 2022
1,066
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.28 KB | None | 0 0
  1. game.Players.PlayerAdded:Connect(function(plr)
  2.    
  3.     local l = Instance.new("Folder",plr)
  4.     l.Name = "leaderstats"
  5.    
  6.     local c1 = Instance.new("IntValue",l)
  7.     c1.Name = "Points"
  8.     c1.Value = 0
  9.    
  10.     local c2 = Instance.new("IntValue",l)
  11.     c2.Name = "Rebirths"
  12.     c2.Value = 0
  13.    
  14. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement