--[[
WARNING: Heads up! This script has not been verified by ScriptBlox. Use at your own risk!
]]
-- Load required Roblox services
local Players = game:GetService("Players")
local TweenService = game:GetService("TweenService")
local player = Players.LocalPlayer
local playerGui = player:WaitForChild("PlayerGui")
-- Create the ScreenGui
local screenGui = Instance.new("ScreenGui")
screenGui.Parent = playerGui
-- Create a Frame for the main UI
local mainFrame = Instance.new("Frame")
mainFrame.Size = UDim2.new(0, 400, 0, 250)
mainFrame.Position = UDim2.new(0.5, -200, 0.5, -125)
mainFrame.BackgroundColor3 = Color3.fromRGB(30, 30, 30) -- Sleek black background
mainFrame.BorderSizePixel = 0
mainFrame.Parent = screenGui
mainFrame.AnchorPoint = Vector2.new(0.5, 0.5)
-- Make the Frame draggable
mainFrame.Active = true
mainFrame.Draggable = true
-- Round the corners of the Frame
local roundCorner = Instance.new("UICorner")
roundCorner.CornerRadius = UDim.new(0, 25)
roundCorner.Parent = mainFrame
-- Add the "Key system" bold, italic, and neon text at the top
local keySystemText = Instance.new("TextLabel")
keySystemText.Size = UDim2.new(0, 300, 0, 40)
keySystemText.Position = UDim2.new(0.5, -150, 0, 10)
keySystemText.BackgroundTransparency = 1
keySystemText.Text = "Key System"
keySystemText.TextColor3 = Color3.fromRGB(0, 255, 255) -- Neon cyan color
keySystemText.Font = Enum.Font.Garamond -- Sleek and rich font
keySystemText.TextScaled = true
keySystemText.RichText = true -- Enable rich text
keySystemText.Parent = mainFrame
-- Add the "Enter" button in the bottom right
local enterButton = Instance.new("TextButton")
enterButton.Size = UDim2.new(0, 100, 0, 50)
enterButton.Position = UDim2.new(1, -120, 1, -60)
enterButton.BackgroundColor3 = Color3.fromRGB(0, 255, 0) -- Neon green
enterButton.Text = "Enter"
enterButton.TextColor3 = Color3.fromRGB(255, 255, 255)
enterButton.Font = Enum.Font.Garamond -- Rich font for buttons too
enterButton.TextScaled = true
enterButton.RichText = true -- Enable rich text
enterButton.Parent = mainFrame
local enterCorner = Instance.new("UICorner")
enterCorner.CornerRadius = UDim.new(0, 25)
enterCorner.Parent = enterButton
-- Add a text input in the middle
local textBox = Instance.new("TextBox")
textBox.Size = UDim2.new(0.7, 0, 0, 50)
textBox.Position = UDim2.new(0.5, -140, 0.5, -25)
textBox.PlaceholderText = "Enter your key..."
textBox.Text = ""
textBox.Font = Enum.Font.Garamond -- Rich text style
textBox.TextScaled = true
textBox.BackgroundColor3 = Color3.fromRGB(50, 50, 50) -- Glossy dark background
textBox.TextColor3 = Color3.fromRGB(255, 255, 255)
textBox.Parent = mainFrame
local textBoxCorner = Instance.new("UICorner")
textBoxCorner.CornerRadius = UDim.new(0, 20)
textBoxCorner.Parent = textBox
-- Add a label for key validation feedback
local feedbackLabel = Instance.new("TextLabel")
feedbackLabel.Size = UDim2.new(0.7, 0, 0, 30)
feedbackLabel.Position = UDim2.new(0.5, -140, 0.5, 30)
feedbackLabel.BackgroundTransparency = 1
feedbackLabel.Text = ""
feedbackLabel.TextColor3 = Color3.fromRGB(255, 0, 0) -- Red for error messages
feedbackLabel.Font = Enum.Font.Garamond
feedbackLabel.TextScaled = true
feedbackLabel.Parent = mainFrame
-- Add the "Discord=Key" text in the bottom left
local discordText = Instance.new("TextLabel")
discordText.Size = UDim2.new(0, 150, 0, 20)
discordText.Position = UDim2.new(0, 10, 1, -80)
discordText.BackgroundTransparency = 1
discordText.Text = "Discord = Key"
discordText.TextColor3 = Color3.fromRGB(0, 255, 255) -- Neon cyan for Discord text
discordText.Font = Enum.Font.Garamond
discordText.TextScaled = true
discordText.RichText = true -- Rich text for this label too
discordText.Parent = mainFrame
-- Add the "Discord" button in the bottom left
local discordButton = Instance.new("TextButton")
discordButton.Size = UDim2.new(0, 100, 0, 50)
discordButton.Position = UDim2.new(0, 10, 1, -60)
discordButton.BackgroundColor3 = Color3.fromRGB(0, 102, 255) -- Neon blue button
discordButton.Text = "Discord"
discordButton.TextColor3 = Color3.fromRGB(255, 255, 255)
discordButton.Font = Enum.Font.Garamond
discordButton.TextScaled = true
discordButton.RichText = true
discordButton.Parent = mainFrame
local discordCorner = Instance.new("UICorner")
discordCorner.CornerRadius = UDim.new(0, 25)
discordCorner.Parent = discordButton
-- Functionality for the Discord button
discordButton.MouseButton1Click:Connect(function()
setclipboard("https://discord.gg/2d5QP6jquv") -- Copy Discord link to clipboard
feedbackLabel.TextColor3 = Color3.fromRGB(0, 255, 0) -- Green for success
feedbackLabel.Text = "Discord link copied!"
wait(3)
feedbackLabel.Text = ""
end)
-- Add the "X" button to close the UI in the top right
local closeButton = Instance.new("TextButton")
closeButton.Size = UDim2.new(0, 30, 0, 30)
closeButton.Position = UDim2.new(1, -40, 0, 10)
closeButton.BackgroundColor3 = Color3.fromRGB(255, 0, 0) -- Neon red close button
closeButton.Text = "X"
closeButton.TextColor3 = Color3.fromRGB(255, 255, 255)
closeButton.Font = Enum.Font.Garamond
closeButton.TextScaled = true
closeButton.RichText = true
closeButton.Parent = mainFrame
local closeCorner = Instance.new("UICorner")
closeCorner.CornerRadius = UDim.new(0, 10)
closeCorner.Parent = closeButton
-- Close the GUI when the "X" button is clicked
closeButton.MouseButton1Click:Connect(function()
screenGui:Destroy()
end)
-- Key validation logic
local correctKey = "quicktest" -- The actual key
enterButton.MouseButton1Click:Connect(function()
if textBox.Text == correctKey then
feedbackLabel.TextColor3 = Color3.fromRGB(0, 255, 0) -- Green for success
feedbackLabel.Text = "Access granted!"
wait(1) -- Short wait to confirm access
--[[
WARNING: Heads up! This script has not been verified by ScriptBlox. Use at your own risk!
]]
-- Load Kavo UI Library
local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/xHeptc/Kavo-UI-Library/main/source.lua"))()
local Window = Library.CreateLib("Game Auto Farm", "DarkTheme")
-- Create Main Tab
local MainTab = Window:NewTab("Main")
local MainSection = MainTab:NewSection("Auto Features")
-- Variables for Auto Farm and Auto Money
local autoFarmEnabled = false
local autoMoneyEnabled = false
local player = game.Players.LocalPlayer
-- Function to find CashCrates
local function findCashCrates()
local cashCrates = {}
local allCrateParents = game:GetService("Workspace"):GetChildren()
for _, folder in ipairs(allCrateParents) do
if folder.Name == "CrateParent" then
local crates = folder:GetChildren()
for _, crate in ipairs(crates) do
if crate.Name == "CashCrate" then
table.insert(cashCrates, crate)
end
end
end
end
return cashCrates
end
-- Auto Farm Toggle
MainSection:NewToggle("Auto Farm", "Teleports to CashCrates", function(state)
autoFarmEnabled = state
if autoFarmEnabled then
spawn(function()
while autoFarmEnabled do
local cashCrates = findCashCrates()
if #cashCrates > 0 then
for _, cashCrate in ipairs(cashCrates) do
player.Character.HumanoidRootPart.CFrame = cashCrate.CFrame
wait(1) -- Wait 1 second before moving to the next crate
end
else
warn("No CashCrates found in any CrateParent")
end
wait(1) -- Wait 1 second before checking for new CashCrates
end
end)
end
end)
-- Auto Money Toggle
MainSection:NewToggle("Auto Money", "Sends Cash every 0.1 seconds", function(state)
autoMoneyEnabled = state
if autoMoneyEnabled then
spawn(function()
while autoMoneyEnabled do
game:GetService("ReplicatedStorage").Rewards.Cash:FireServer()
wait(0.1) -- Wait 0.1 seconds before firing again
end
end)
end
end)
-- Create Credits Tab
local CreditsTab = Window:NewTab("Credits")
local CreditsSection = CreditsTab:NewSection("Credits")
-- Display Credit Information
CreditsSection:NewLabel("Made by x11px on Discord")
-- Create Toggle Button to Show/Hide GUI
local gui = Instance.new("ScreenGui")
gui.Name = "AutoFarmGui"
gui.Parent = game.CoreGui
local ToggleButton = Instance.new("TextButton")
ToggleButton.Text = "Toggle GUI"
ToggleButton.TextSize = 24
ToggleButton.TextColor3 = Color3.new(1, 1, 1)
ToggleButton.BackgroundColor3 = Color3.new(0, 1, 1)
ToggleButton.BorderColor3 = Color3.new(1, 1, 1)
ToggleButton.BorderSizePixel = 4
ToggleButton.Font = Enum.Font.Code
ToggleButton.Size = UDim2.new(0.2, 0, 0.1, 0)
ToggleButton.Position = UDim2.new(0, 0, 0.4, 0)
ToggleButton.Parent = gui
ToggleButton.Draggable = true
local cornerUI = Instance.new("UICorner")
cornerUI.CornerRadius = UDim.new(0, 5)
cornerUI.Parent = ToggleButton
local uiStroke = Instance.new("UIStroke")
uiStroke.Color = Color3.new(0, 0, 0)
uiStroke.Thickness = 2
uiStroke.Parent = ToggleButton
ToggleButton.MouseButton1Click:Connect(function()
Library:ToggleUI()
end)
-- Show the Kavo UI
Library:Init()
else
feedbackLabel.TextColor3 = Color3.fromRGB(255, 0, 0) -- Red for error
feedbackLabel.Text = "Invalid key. Try again."
print("Error: Invalid key entered.")
wait(2)
feedbackLabel.Text = "" -- Clear feedback text
end
end)