Advertisement
ZOUK_AG

Roblox Studio Leader board

May 31st, 2020
505
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. game.Players.PlayerAdded:Connect(function(Player)
  2.  
  3. local Stats = Instance.new("Folder")
  4. Stats.Name = "leaderstats"
  5. Stats.Parent = Player
  6.  
  7. local Money = Instance.new("IntValue")
  8. Money.Name = "Money" --자신이 원하는 돈이름 (예:Chas,Money,Coin)
  9. Money.Parent = Stats
  10. Money.Value = 0
  11. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement