Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- --- Put this Script inside ServerScriptService --
- game.Players.PlayerAdded:Connect(function(Player)
- local Stats = Instance.new("Folder")
- Stats.Name = "leaderstats"
- Stats.Parent = Player
- local Money = Instance.new("IntValue")
- Money.Name = "Money"
- Money.Parent = Stats
- Money.Value = 500 -- Change this Value to "0" --
- end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement