Advertisement
ShadowDragons_YT

Booga Booga NEWEST dupe

Mar 21st, 2020
5,584
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.99 KB | None | 0 0
  1. --CREDITS:
  2. --https://v3rmillion.net/showthread.php?tid=960790
  3. --tutorial:
  4. --https://www.youtube.com/watch?v=aA_wq13jbt0&feature=youtu.be
  5. local library = loadstring(game:HttpGet("https://pastebin.com/raw/eWKgbdix", true))()
  6. local w = library:CreateWindow('Booga Booga')
  7. w:Section('MAKE SURE YOU DROP')
  8. w:Section('EVERYTHING IN YOUR')
  9. w:Section('INVENTORY BUT 3 WOOD')
  10. w:Section('')
  11.  
  12.  
  13. w:Button("Press Me First", function()
  14. wait(.45)
  15. game:GetService("ReplicatedStorage").Events.CraftItem:FireServer("Club")
  16. end)
  17.  
  18. w:Button("Press Me Second", function()
  19. game:GetService("ReplicatedStorage").Events.UseBagItem:FireServer("Rock Tool")
  20. wait(.32)
  21. game:GetService("ReplicatedStorage").Events.DropBagItem:FireServer("Club")
  22. end)
  23.  
  24. local box = w:Box('Item Name', {
  25.    flag = "Dp";
  26.    type = 'Script';
  27. }, function(new, old, enter)
  28.    print(new, old, enter)
  29.    for count = 1, 20 do --Change 5 to how many you want
  30.  game:GetService("ReplicatedStorage").Events.DropBagItem:FireServer(new)
  31. end
  32. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement