I have a script for a currency called "Coins" and i need to add one more called "Diamonds" How can i do this without adding one more script?
1 | game.Players.PlayerAdded:connect( function (plr) |
2 | local folder = Instance.new( "Folder" , plr) |
3 | folder.Name = "leaderstats" |
4 | local value = Instance.new( "IntValue" , folder) |
5 | value.Name = "Coins" |
6 | value.Value = 0 -- starting cash |
7 | end ) |
after line 6:
1 | local dia = Instance.new( "IntValue" , folder) |
2 | dia.Name = "Diamonds" |
3 | dia.Value = 0 |
This will create another value and add it to the leaderstats folder. Then it will call it Diamonds and set it to 0 (starting cash)