Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- Znajdujemy funckję LoadData i szukamy następującego fragmentu:
- for key, folder in pairs(data) do
- if key == "leaderstats" then
- for item, amount in pairs(folder) do
- if item == "Coins" then
- player.leaderstats.Coins.Value = amount
- elseif item == "Diamonds" then
- player.leaderstats.Diamonds.Value = amount
- -- Dodajemy nowy kod
- elseif item == "Shards" then
- player.leaderstats.Shards.Value = amount
- -- Koniec nowego kodu
- -- Dalszy kod aż do następującego fragmentu:
- bank.OnServerEvent:Connect(function(player, action, currency, amount)
- if action == "+" then
- if currency == "Coins" then
- player.leaderstats.Coins.Value += amount
- elseif currency == "Diamonds" then
- player.leaderstats.Diamonds.Value += amount
- -- Dodajemy nowy fragment kodu
- elseif currency == "Shards" then
- player.leaderstats.Shards.Value += amount
- -- Koniec nowego kodu
- -- Docieramy do końca istniejącego kodu i dodajemy
- local shards = remotes.Shards
- shards.OnServerEvent:Connect(function(player, drop)
- player.leaderstats.Shards.Value += drop
- end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement