MainTab:CreateButton({
   Name = "Inf Money / Money Dupe",
   Callback = function()
      local player = game.Players.LocalPlayer
      if not player.Character or not player.Character:FindFirstChild("HumanoidRootPart") then
         return
      end

      local originalCFrame = player.Character.HumanoidRootPart.CFrame

      local blackScreen = Instance.new("ScreenGui")
      blackScreen.IgnoreGuiInset = true
      blackScreen.ResetOnSpawn = false
      blackScreen.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
      blackScreen.DisplayOrder = 9999
      blackScreen.Name = "BlackoutScreen"
      blackScreen.Parent = game:GetService("CoreGui")

      local frame = Instance.new("Frame")
      frame.AnchorPoint = Vector2.new(0, 0)
      frame.Position = UDim2.new(0, 0, 0, 0)
      frame.Size = UDim2.new(1, 0, 1, 0)
      frame.BackgroundColor3 = Color3.new(0, 0, 0)
      frame.BorderSizePixel = 0
      frame.Parent = blackScreen

      local label = Instance.new("TextLabel")
      label.Size = UDim2.new(0, 300, 0, 50)
      label.Position = UDim2.new(0.5, -150, 0.5, -25)
      label.BackgroundTransparency = 1
      label.Text = "Dkshub #1 Undetected"
      label.TextColor3 = Color3.fromRGB(0, 255, 0)
      label.TextScaled = true
      label.Font = Enum.Font.GothamBold
      label.Parent = blackScreen

      local SellPart = workspace:FindFirstChild("IceFruit Sell")
      local SellPrompt = SellPart and SellPart:FindFirstChild("ProximityPrompt")
      if not (SellPart and SellPrompt) then
         blackScreen:Destroy()
         return
      end

      player.Character.HumanoidRootPart.CFrame = CFrame.new(SellPart.Position)
      task.wait(0.25)

      for _ = 1, 2000 do
         local success, err = pcall(function()
            fireproximityprompt(SellPrompt, 0)
         end)
         if not success then
            break
         end
      end

      player.Character.HumanoidRootPart.CFrame = originalCFrame

      task.wait(0.5)
      blackScreen:Destroy()
   end
})

Embed on website

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