Post Views: 55
Created by egg salad#3344
Features:
- SPAWN ITEMS (GET 1 OF EVERY ITEM)
for i,v in pairs(game.ReplicatedStorage.Items:GetDescendants()) do
if v:IsA("Frame") then
game.ReplicatedStorage.Remotes.Shop:FireServer("Buy1", {
Cost = {Value = 0},
Name = v.Name
})
end
end
local Amount = 1000000
game.ReplicatedStorage.Remotes.Shop:FireServer("Buy1", {
Cost = {Value = -Amount},
Name = "Power Potion"
})