Advertisement
PpRoStOo

give items and change stats Legends: Rewritten

Dec 2nd, 2021
7,702
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.72 KB | None | 0 0
  1. local function give(i,n)
  2. game:GetService("ReplicatedStorage").Remotes.AddShirt:FireServer(i,tostring(n))
  3. end
  4. local library = loadstring(game:HttpGet(('https://raw.githubusercontent.com/bloodball/-back-ups-for-libs/main/wall%20v3')))()
  5. local t = {}
  6. for i,v in pairs(game:GetService("Players").LocalPlayer:WaitForChild("Data"):GetChildren()) do
  7. if v:IsA("IntValue") then
  8. table.insert(t,v.Name)
  9. end
  10. end
  11. local b = library:CreateWindow("Wacky Item Spawner"):CreateFolder("Item Spawner")
  12. b:Dropdown("Select Item",t,true,function(selected)
  13. item=selected
  14. end)
  15. b:Box("Amount Of Items","number",function(value)
  16. items=value
  17. end)
  18. b:Button("Give Selected Items",function()
  19. give(item,items)
  20. end)b:DestroyGui()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement