Advertisement
KashTheKingYT

Leaderstats Script

Aug 23rd, 2021
1,397
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.26 KB | None | 0 0
  1. local players = game.Players
  2. players.PlayerAdded:Connect(function(plr)
  3.     local leaderstats = Instance.new("Folder", plr)
  4.     leaderstats.Name = "leaderstats"
  5.    
  6.     local money = Instance.new("IntValue", leaderstats)
  7.     money.Name = "Money"
  8.    
  9.     money.Value = 1000
  10. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement