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 = yesrts,
      FileName = "Big Hub"
   },
   Discord = {
      Enabled = true,
      Invite = "https://[Log in to view URL]",
      RememberJoins = true
   },
   KeySystem = true,
   KeySettings = {
      Title = "key system",
      Subtitle = "key 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 = {"yerstood"}
   }
})

local MainTab = Window:CreateTab("duping", nil)
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",
   Callback = function(Value)
       print(hello) -- <--- script for dupe
   end,
})

local Toggle = MainTab:CreateToggle({
   Name = "Collect Item",
   CurrentValue = false,
   Flag = "Toggle2",
   Callback = function(Value) 
       print(hi) -- <---- collect script
   end, 
})

local Toggle = MainTab:CreateToggle({
   Name = "Enable/Disable",
   CurrentValue = false,
   Flag = "Toggle3",
   Callback = function(Value)
       print(nice)  -- <---- enable/disable script  
   end,
})

local Toggle = MainTab:CreateToggle({
   Name = "Auto Spin Wheel",
   CurrentValue = false,
   Flag = "Toggle4",
   Callback = function(Value)
       print(okay) -- <----- auto wheel spin script
   end,
})

local Toggle = MainTab:CreateToggle({
   Name = "Anti Grab",
   CurrentValue = false,
   Flag = "Toggle5",
   callback = function(Value) 
       print(eise) -- <---- anti grab stuff script
   end,
})

local Toggle = MainTab:CreateToggle({
   Name = "Fast Drop",
   CurrentValue = false,
   Flag = "Toggle6",
   Callback = function(Value)
       print(tolt) -- <---- fast drop script
   end,
})

Rayfield:LoadConfiguration()

Embed on website

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