Advertisement
Guest User

Reddex - Lucky Blocks 4

a guest
Apr 23rd, 2017
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.55 KB | None | 0 0
  1. --Scripted by Reddex (https://v3rmillion.net/member.php?action=profile&uid=5025)
  2. local Gears = { --Change these to true and you will be given every gear of that type, right now it only gives out super gear
  3. ["LuckyBlockGear"] = false,
  4. ["DiamondBlockGear"] = false,
  5. ["SuperBlockGear"] = true
  6. }
  7.  
  8. local Player = game.Players.LocalPlayer
  9. for _, z in pairs(Gears) do
  10. if(z == true)then
  11. for i,v in pairs(game:GetService("ReplicatedStorage")[_]:GetChildren()) do
  12. local Gear = v:Clone():GetChildren()[1]
  13. Gear.Parent = Player.Backpack
  14. end
  15. end
  16. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement