Advertisement
xmaanzach

New Leaderstats Script (2021)

Jul 19th, 2021
1,978
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.30 KB | None | 0 0
  1. local Players = game:GetService("Players")
  2.  
  3. Players.PlayerAdded:Connect(function(Player)
  4.     local Folder = Instance.new("Folder")
  5.     Folder.Name = "leaderstats"
  6.     Folder.Parent = Player
  7.  
  8.     local Dinero = Instance.new("IntValue")
  9.     Dinero.Name = "Dinero"
  10.     Dinero.Value = 50
  11.     Dinero.Parent = Folder
  12. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement