Advertisement
Guest User

Untitled

a guest
Nov 13th, 2019
145
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.27 KB | None | 0 0
  1. game.Players.PlayerAdded:Connect(function(P)
  2.    
  3.     local PointsFolder = Instance.new("Folder")
  4.     PointsFolder.Parent = P
  5.     PointsFolder.Name = "leaderstats"
  6.    
  7.     local Points = Instance.new("IntValue")
  8.     Points.Parent = PointsFolder
  9.     Points.Value = 0
  10.     Points.Name = "Points"
  11. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement