local Rayfield = loadstring(game:HttpGet('https://[Log in to view URL]'))()

local Window = Rayfield:CreateWindow({
   Name = "pop it trading script",
   LoadingTitle = "vetrox hub",
   LoadingSubtitle = "by stix & big boi",
   ConfigurationSaving = {
      Enabled = true,
      FolderName = nil, -- Create a custom folder for your hub/game
      FileName = "Big Hub"
   },
   Discord = {
      Enabled = true,
      Invite = "https://[Log in to view URL]", -- The Discord invite code, do not include discord.gg/. E.g. discord.gg/ABCD would be ABCD
      RememberJoins = true -- Set this to false to make them join the discord every time they load it up
   },
   KeySystem = true, -- Set this to true to use our key system
   KeySettings = {
      Title = "key system",
      Subtitle = "link in discord server",
      Note = "join discord for the key",
      FileName = "vetroxhub", -- It is recommended to use something unique as other scripts using Rayfield may overwrite your key file
      SaveKey = true, -- The user's key will be saved, but if you change the key, they will be unable to use your script
      GrabKeyFromSite = true, -- If this is true, set Key below to the RAW site you would like Rayfield to get the key from
      Key = {"https://[Log in to view URL]"} -- List of keys that will be accepted by the system, can be RAW file links (pastebin, github etc) or simple strings ("hello","key22")
   }
})

local MainTab = Window:CreateTab("duping", nil) -- Title, Image
local MainSection = MainTab:CreateSection("dupe")

Rayfield:Notify({
   Title = "Notification",
   Content = "thanks for using vetrox hub! ",
   Duration = 4,
   Image = nil,
   Actions = { -- Notification Buttons
      Ignore = {
         Name = "Okay!",
         Callback = function()
         print("The user tapped Okay!")
      end
   },
},
})

local Toggle = MainTab:CreateToggle({
   Name = "Dupe",
   CurrentValue = false,
   Flag = "Toggle1", -- A flag is the identifier for the configuration file, make sure every element has a different flag if you're using configuration saving to ensure no overlaps
   Callback = function(Value)
            print(hello) -- <--- script for dupe
   end,
})

local Toggle = MainTab:CreateToggle({
   Name = "Collect Item",
   CurrentValue = false,
   Flag = "Toggle2", -- A flag is the identifier for the configuration file, make sure every element has a different flag if you're using configuration saving to ensure no overlaps
   Callback = function(Value) 
       print(hi) -- <---- collect script
        end, 
})

local Toggle = MainTab:CreateToggle({
   Name = "Enable/Disable",
   CurrentValue = false,
   Flag = "Toggle3", -- A flag is the identifier for the configuration file, make sure every element has a different flag if you're using configuration saving to ensure no overlaps
   Callback = function(Value)
       print(nice)  -- <---- enable/disable script           
                end,
})

local Toggle = MainTab:CreateToggle({
   Name = "Auto Spin Wheel",
   CurrentValue = false,
   Flag = "Toggle4", -- A flag is the identifier for the configuration file, make sure every element has a different flag if you're using configuration saving to ensure no overlaps
   Callback = function(Value)
       print(okay) -- <----- auto wheel spin script
        end,
})

local Toggle = MainTab:CreateToggle({
   Name = "Anti Grab",
   CurrentValue = false,
   Flag = "Toggle5", -- A flag is the identifier for the configuration file, make sure every element has a different flag if you're using configuration saving to ensure no overlaps
   Callback = function(Value) 
       print(eise) -- <---- anti grab stuff script
        end,
})

local Toggle = MainTab:CreateToggle({
   Name = "Fast Droo",
   CurrentValue = false,
   Flag = "Toggle6", -- A flag is the identifier for the configuration file, make sure every element has a different flag if you're using configuration saving to ensure no overlaps
   Callback = function(Value)
       print(tolt) -- <---- fast drop script
        end,
})

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: