Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- Change 5555 with the amount the player spawns in with
- -- Feel free to add a DataStore!
- game.Players.PlayerAdded:Connect(function(player)
- local leaderstats = Instance.new("Folder", player)
- leaderstats.Name = "leaderstats" -- DONT CHANGE THIS OR IT WILL BREAK!!
- local Coins = Instance.new("NumberValue", leaderstats)
- Coins.Name = "Coins" -- You can change the name of the coins
- Coins.Value = 5555
- end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement