RandomMagics

Critical Legends script

Jan 20th, 2022
714
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. get 1 of every item & material
  2. Code:
  3. for i,v in pairs(game.ReplicatedStorage.Items:GetDescendants()) do
  4. if v:IsA("Frame") then
  5. game.ReplicatedStorage.Remotes.Shop:FireServer("Buy1", {
  6. Cost = {Value = 0},
  7. Name = v.Name
  8. })
  9. end
  10. end
  11.  
  12. inf gold
  13. Code:
  14. local Amount = 1000000
  15. game.ReplicatedStorage.Remotes.Shop:FireServer("Buy1", {
  16. Cost = {Value = -Amount},
  17. Name = "Power Potion"
  18. })
Advertisement
Add Comment
Please, Sign In to add comment