Advertisement
DoubleCorrect1

leaderstats script

Mar 28th, 2022
40
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. game.Players.PlayerAdded:Connect(function(player)
  2. local leaderstats = Instance.new("Folder")
  3. leaderstats.Name = "leaderstats"
  4. leaderstats.Parent = player
  5.  
  6. local money = Instance.new("IntValue")
  7. money.Name = "Money"
  8. money.Parent = leaderstats
  9. money.Value = 0 -- You can change it how much number you want it to be
  10. end)
  11.  
  12. -- And this is DoubleGamePlays saying keep scripting!
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement