local TweenService = game:GetService("TweenService")
local Players = game:GetService("Players")

local player = Players.LocalPlayer
local playerGui = player:WaitForChild("PlayerGui")

local screenGui = Instance.new("ScreenGui")
screenGui.Parent = playerGui

local keyFrame = Instance.new("Frame")
keyFrame.Size = UDim2.new(0, 260, 0, 200)
keyFrame.Position = UDim2.new(0.5, -130, -0.5, 0)
keyFrame.BackgroundColor3 = Color3.fromRGB(20, 20, 20)
keyFrame.BorderSizePixel = 0
keyFrame.Parent = screenGui

local keyCorner = Instance.new("UICorner", keyFrame)
keyCorner.CornerRadius = UDim.new(0, 10)

local title = Instance.new("TextLabel")
title.Size = UDim2.new(1, 0, 0, 30)
title.BackgroundTransparency = 1
title.Text = "Enter Your Key"
title.TextColor3 = Color3.fromRGB(255, 255, 255)
title.Font = Enum.Font.GothamBold
title.TextSize = 18
title.Parent = keyFrame

local keyBox = Instance.new("TextBox")
keyBox.Size = UDim2.new(0.8, 0, 0, 30)
keyBox.Position = UDim2.new(0.1, 0, 0.25, 0)
keyBox.PlaceholderText = "Enter Key"
keyBox.Text = ""
keyBox.BackgroundColor3 = Color3.fromRGB(50, 50, 50)
keyBox.TextColor3 = Color3.fromRGB(255, 255, 255)
keyBox.Font = Enum.Font.Gotham
keyBox.TextSize = 16
keyBox.Parent = keyFrame

local keyCornerBox = Instance.new("UICorner", keyBox)
keyCornerBox.CornerRadius = UDim.new(0, 6)

local submitButton = Instance.new("TextButton")
submitButton.Size = UDim2.new(0.8, 0, 0, 30)
submitButton.Position = UDim2.new(0.1, 0, 0.5, 0)
submitButton.Text = "Submit Key"
submitButton.BackgroundColor3 = Color3.fromRGB(0, 150, 0)
submitButton.TextColor3 = Color3.fromRGB(255, 255, 255)
submitButton.Font = Enum.Font.GothamBold
submitButton.TextSize = 16
submitButton.Parent = keyFrame

local submitCorner = Instance.new("UICorner", submitButton)
submitCorner.CornerRadius = UDim.new(0, 6)

local getKeyButton = Instance.new("TextButton")
getKeyButton.Size = UDim2.new(0.8, 0, 0, 30)
getKeyButton.Position = UDim2.new(0.1, 0, 0.75, 0)
getKeyButton.Text = "Get Key"
getKeyButton.BackgroundColor3 = Color3.fromRGB(0, 120, 255)
getKeyButton.TextColor3 = Color3.fromRGB(255, 255, 255)
getKeyButton.Font = Enum.Font.GothamBold
getKeyButton.TextSize = 16
getKeyButton.Parent = keyFrame

local getKeyCorner = Instance.new("UICorner", getKeyButton)
getKeyCorner.CornerRadius = UDim.new(0, 6)

local popupFrame = Instance.new("Frame")
popupFrame.Size = UDim2.new(0, 260, 0, 140)
popupFrame.Position = UDim2.new(0.5, 150, 0.35, 0)
popupFrame.BackgroundColor3 = Color3.fromRGB(25, 25, 25)
popupFrame.BorderSizePixel = 0
popupFrame.Visible = false
popupFrame.Parent = screenGui

local popupCorner = Instance.new("UICorner", popupFrame)
popupCorner.CornerRadius = UDim.new(0, 10)

local popupText = Instance.new("TextBox")
popupText.Size = UDim2.new(1, -20, 1, -40)
popupText.Position = UDim2.new(0, 10, 0, 10)
popupText.BackgroundTransparency = 1
popupText.Text = "To get the key go to this link:\nhttps://[Log in to view URL] buy the gamepass and DM @real.gob on Discord with proof of purchase."
popupText.TextColor3 = Color3.fromRGB(255, 255, 255)
popupText.Font = Enum.Font.Gotham
popupText.TextSize = 14
popupText.TextWrapped = true
popupText.TextYAlignment = Enum.TextYAlignment.Top
popupText.ClearTextOnFocus = false
popupText.TextEditable = false 
popupText.Parent = popupFrame

local closePopup = Instance.new("TextButton")
closePopup.Size = UDim2.new(0.8, 0, 0, 30)
closePopup.Position = UDim2.new(0.1, 0, 1, -35)
closePopup.Text = "Close"
closePopup.BackgroundColor3 = Color3.fromRGB(150, 0, 0)
closePopup.TextColor3 = Color3.fromRGB(255, 255, 255)
closePopup.Font = Enum.Font.GothamBold
closePopup.TextSize = 16
closePopup.Parent = popupFrame

local closeCorner = Instance.new("UICorner", closePopup)
closeCorner.CornerRadius = UDim.new(0, 6)

getKeyButton.MouseButton1Click:Connect(function()
    popupFrame.Visible = true
    TweenService:Create(popupFrame, TweenInfo.new(0.5, Enum.EasingStyle.Quad), {Position = UDim2.new(0.5, 150, 0.35, 0)}):Play()
end)

closePopup.MouseButton1Click:Connect(function()
    TweenService:Create(popupFrame, TweenInfo.new(0.5, Enum.EasingStyle.Quad), {Position = UDim2.new(0.5, 150, -0.5, 0)}):Play()
    wait(0.5)
    popupFrame.Visible = false
end)

local secretKey = "qyiWAZLhD8Sy"

submitButton.MouseButton1Click:Connect(function()
    if keyBox.Text == secretKey then
        keyBox.Text = "Key Accepted!"
        wait(1)
        TweenService:Create(keyFrame, TweenInfo.new(0.5, Enum.EasingStyle.Quad), {Position = UDim2.new(0.5, -130, -0.5, 0)}):Play()
        wait(0.5)
        keyFrame.Visible = false

        local toggled = { ["1ChipSlotScriptV2"] = false, ["10ChipSlotScriptV2"] = false, ["100ChipSlotScriptV2"] = false }
        local runningTasks = {}

        local mainToggle = Instance.new("TextButton")
        mainToggle.Size = UDim2.new(0, 50, 0, 50)
        mainToggle.Position = UDim2.new(0, 10, 0.4, 0)
        mainToggle.Text = "Menu"
        mainToggle.BackgroundColor3 = Color3.fromRGB(30, 30, 30)
        mainToggle.TextColor3 = Color3.fromRGB(255, 255, 255)
        mainToggle.Font = Enum.Font.GothamBold
        mainToggle.TextSize = 16
        mainToggle.Parent = screenGui

        local menuFrame = Instance.new("Frame")
        menuFrame.Size = UDim2.new(0, 160, 0, 200)
        menuFrame.Position = UDim2.new(0, 10, 0.4, 60)
        menuFrame.BackgroundColor3 = Color3.fromRGB(20, 20, 20)
        menuFrame.BorderSizePixel = 0
        menuFrame.Parent = screenGui
        menuFrame.Visible = false

        local uiCorner = Instance.new("UICorner", menuFrame)
        uiCorner.CornerRadius = UDim.new(0, 10)

        local function createButton(name, position)
            local button = Instance.new("TextButton")
            button.Size = UDim2.new(1, 0, 0, 40)
            button.Position = UDim2.new(0, 0, 0, position)
            button.Text = name .. " (OFF)"
            button.BackgroundColor3 = Color3.fromRGB(50, 50, 50)
            button.TextColor3 = Color3.fromRGB(255, 255, 255)
            button.Font = Enum.Font.GothamBold
            button.TextSize = 18
            button.Parent = menuFrame

            local corner = Instance.new("UICorner", button)
            corner.CornerRadius = UDim.new(0, 8)

            return button
        end

        local button1C = createButton("1C", 0)
        local button10C = createButton("10C", 45)
        local button100C = createButton("100C", 90)
        local toggleAllButton = createButton("Toggle All Slots", 135)
        local destroyButton = createButton("Destroy", 180)
        destroyButton.Text = "Destroy"
        destroyButton.BackgroundColor3 = Color3.fromRGB(200, 50, 50)

        toggleAllButton.Text = "Toggle All Slots"
        toggleAllButton.BackgroundColor3 = Color3.fromRGB(255, 165, 0)
        toggleAllButton.TextSize = 20
        toggleAllButton.Font = Enum.Font.GothamBlack

        local menuVisible = false
        mainToggle.MouseButton1Click:Connect(function()
            menuVisible = not menuVisible
            menuFrame.Visible = menuVisible
        end)

        local function toggleAutoClick(scriptName, button)
            toggled[scriptName] = not toggled[scriptName]
            button.Text = scriptName:match("(%d+)Chip") .. "C (" .. (toggled[scriptName] and "ON" or "OFF") .. ")"
            button.BackgroundColor3 = toggled[scriptName] and Color3.fromRGB(0, 150, 0) or Color3.fromRGB(50, 50, 50)

            if toggled[scriptName] then
                runningTasks[scriptName] = coroutine.create(function()
                    while toggled[scriptName] do
                        for _, model in ipairs(workspace:GetDescendants()) do
                            if model:IsA("Model") and model:FindFirstChild(scriptName) then
                                for _, clickDetector in ipairs(model:GetDescendants()) do
                                    if clickDetector:IsA("ClickDetector") then
                                        clickDetector.MaxActivationDistance = 1e6
                                        fireclickdetector(clickDetector)
                                    end
                                end
                            end
                        end
                        wait(7.5)
                    end
                end)
                coroutine.resume(runningTasks[scriptName])
            else
                runningTasks[scriptName] = nil
            end
        end

        button1C.MouseButton1Click:Connect(function() toggleAutoClick("1ChipSlotScriptV2", button1C) end)
        button10C.MouseButton1Click:Connect(function() toggleAutoClick("10ChipSlotScriptV2", button10C) end)
        button100C.MouseButton1Click:Connect(function() toggleAutoClick("100ChipSlotScriptV2", button100C) end)

        toggleAllButton.MouseButton1Click:Connect(function()
            toggleAutoClick("1ChipSlotScriptV2", button1C)
            toggleAutoClick("10ChipSlotScriptV2", button10C)
            toggleAutoClick("100ChipSlotScriptV2", button100C)
        end)

        destroyButton.MouseButton1Click:Connect(function()
            screenGui:Destroy()
            script:Destroy()
        end)

    else
        keyBox.Text = "Invalid Key!"
        wait(1)
        keyBox.Text = ""
    end
end)

keyFrame.Visible = true
TweenService:Create(keyFrame, TweenInfo.new(0.5, Enum.EasingStyle.Quad), {Position = UDim2.new(0.5, -130, 0.35, 0)}):Play()

Embed on website

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