Advertisement
Alief_Athallah

Leaderstats Script

May 30th, 2020
158
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.34 KB | None | 0 0
  1. --- Put this Script inside ServerScriptService --
  2.  
  3. game.Players.PlayerAdded:Connect(function(Player)
  4.    
  5.     local Stats = Instance.new("Folder")
  6.     Stats.Name = "leaderstats"
  7.     Stats.Parent = Player
  8.    
  9.     local Money = Instance.new("IntValue")
  10.     Money.Name = "Money"
  11.     Money.Parent = Stats
  12.     Money.Value = 500 -- Change this Value to "0" --
  13. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement