Advertisement
KiroOnTop

Pop it trading

May 7th, 2022 (edited)
1,323
1
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/xHeptc/Kavo-UI-Library/main/source.lua"))()
  2. local Window = Library.CreateLib("MAD HUB", "Midnight")
  3. local Tab1 = Window:NewTab("Buy Nft's")
  4. local Tab2 = Window:NewTab("Floppa")
  5. local Tab2Section = Tab2:NewSection("Floppa")
  6. Tab2Section:NewButton("Buy Floppa", "10K Needed", function()
  7. local args = {
  8.     [1] = "Floppa"
  9. }
  10.  
  11. game:GetService("ReplicatedStorage").RemoteEvents.BuyItemCash:FireServer(unpack(args))
  12.  
  13.     print("Clicked")
  14. end)
  15.  
  16. local Tab1Section = Tab1:NewSection("Buy Items")
  17. Tab1Section:NewButton("Buy Pop It Rainbow", "600M Needed", function()
  18. local args = {
  19.     [1] = "Pop It Rainbow!"
  20. }
  21.  
  22. game:GetService("ReplicatedStorage").RemoteEvents.BuyItemCash:FireServer(unpack(args))
  23.     print("Clicked")
  24. end)
  25.  
  26. Tab1Section:NewButton("Buy Watermelon", "5K Needed", function()
  27. local args = {
  28.     [1] = "Watermelon"
  29. }
  30.  
  31. game:GetService("ReplicatedStorage").RemoteEvents.BuyItemCash:FireServer(unpack(args))
  32.     print("Clicked")
  33. end)
  34. local Tab1Section = Tab1:NewSection("Buy Nft's")
  35. Tab1Section:NewButton("Talking Ben", "1M Needed", function()
  36. local args = {
  37.     [1] = "Trading Ben"
  38. }
  39.  
  40. game:GetService("ReplicatedStorage").RemoteEvents.BuyItemCash:FireServer(unpack(args))
  41. print("Clicked")
  42. end)
  43.  
  44. Tab1Section:NewButton("Munneh", "50K Needed", function()
  45. local args = {
  46.     [1] = "Munneh"
  47. }
  48.  
  49. game:GetService("ReplicatedStorage").RemoteEvents.BuyItemCash:FireServer(unpack(args))
  50.  
  51.     print("Clicked")
  52. end)
  53.  
  54.  
  55. Tab1Section:NewButton("Mummeh One Legs", "500K Needed", function()
  56. local args = {
  57.     [1] = "Mommeh Long Legs"
  58. }
  59.  
  60. game:GetService("ReplicatedStorage").RemoteEvents.BuyItemCash:FireServer(unpack(args))
  61.  
  62.     print("Clicked")
  63. end)
  64.  
  65. local Tab3 = Window:NewTab("Scripts")
  66. local Tab3Section = Tab3:NewSection("Scripts")
  67. Tab3Section:NewButton("Basbousa v0.6", "Basbousa Script", function()
  68.     loadstring(game:HttpGet("https://raw.githubusercontent.com/Basbousa1/my-roblox-scripts/main/Roblox-PopItTrading%20script.lua"))()
  69. end)
  70.  
  71. Tab3Section:NewButton("Scam Script", "Scamming Script", function()
  72.     loadstring(game:HttpGet("https://raw.githubusercontent.com/thatchrisie/popItScript/main/README.md",true))()
  73. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement