-- PCF Arcade OP Hub v2 (Godmode + Kill Aura + Fly + FREE 200K CASH & 50K MINUTES --Added Infinite Cash/Minutes Farm - Toggle for FREE 200k Cash + 50k Minutes! -- By scripterblabla - Execute & GUI Loads Instantly! local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/xHeptc/Kavo-UI-Library/main/source.lua"))() local Window = Library.CreateLib("PCF Arcade scripterblabla Hub v2", "DarkTheme") local player = game.Players.LocalPlayer local Tab1 = Window:NewTab("Player Hacks") local Section1 = Tab1:NewSection("Movement & God") Section1:NewToggle("Godmode (Inf Health/Stamina)", "Unkillable + No Cooldowns", function(state) if state then _G.God = true spawn(function() while _G.God do task.wait() if player.Character then local hum = player.Character:FindFirstChild("Humanoid") local root = player.Character:FindFirstChild("HumanoidRootPart") if hum then hum.Health = math.huge; hum.MaxHealth = math.huge end -- Inf Stamina (anti-stun) local stamina = player.Character:FindFirstChild("Stamina") if stamina then stamina.Value = 100 end end end end) else _G.God = false end end) Section1:NewToggle("Fly (Mobile OK)", "Hold SPACE to fly up", function(state) _G.Fly = state local char = player.Character or player.CharacterAdded:Wait() local root = char:WaitForChild("HumanoidRootPart") local bv = Instance.new("BodyVelocity", root) bv.MaxForce = Vector3.new(4000,4000,4000) bv.Velocity = Vector3.new(0,0,0) spawn(function() while _G.Fly and bv.Parent do task.wait() local cam = workspace.CurrentCamera local vel = cam.CFrame.LookVector * 50 if game:GetService("UserInputService"):IsKeyDown(Enum.KeyCode.Space) then vel = vel + Vector3.new(0,50,0) end if game:GetService("UserInputService"):IsKeyDown(Enum.KeyCode.LeftShift) then vel = vel - Vector3.new(0,50,0) end bv.Velocity = vel end bv:Destroy() end) end) Section1:NewSlider("Speed", "Walkspeed Boost", 500, 16, function(s) if player.Character then player.Character.Humanoid.WalkSpeed = s end end) Section1:NewToggle("Noclip", "Walk thru walls", function(state) _G.Noclip = state spawn(function() while _G.Noclip do task.wait() if player.Character then for _, part in pairs(player.Character:GetChildren()) do if part:IsA("BasePart") then part.CanCollide = false end end end end if player.Character then for _, part in pairs(player.Character:GetChildren()) do if part:IsA("BasePart") then part.CanCollide = true end end end end) end) local Tab2 = Window:NewTab("Combat") local Section2 = Tab2:NewSection("Auto Kill Aura") Section2:NewToggle("Kill Aura (Auto Attack)", "Hits everyone near", function(state) _G.KAura = state spawn(function() while _G.KAura do task.wait(0.2) if player.Character and player.Character:FindFirstChild("HumanoidRootPart") then for _, plr in pairs(game.Players:GetPlayers()) do if plr ~= player and plr.Character and plr.Character:FindFirstChild("HumanoidRootPart") then local dist = (plr.Character.HumanoidRootPart.Position - player.Character.HumanoidRootPart.Position).Magnitude if dist < 15 then -- Try common combat remotes (adapt if needed) pcall(function() game:GetService("ReplicatedStorage").Remotes:FindFirstChild("Punch"):FireServer() game:GetService("ReplicatedStorage").Remotes:FindFirstChild("Attack"):FireServer(plr) game:GetService("ReplicatedStorage").Remotes:FindFirstChild("Choke"):FireServer(plr.Character.HumanoidRootPart) end) end end end end end end) end) Section2:NewToggle("Auto Dodge", "Spam dodges", function(state) _G.Dodge = state spawn(function() while _G.Dodge do task.wait(0.1) pcall(function() game:GetService("ReplicatedStorage").Remotes:FindFirstChild("Dodge"):FireServer() end) end end) end) local Tab3 = Window:NewTab("Farm") local Section3 = Tab3:NewSection("Free Cash & Minutes") Section3:NewToggle("Infinite 200k Cash", "Auto sets Cash to 200,000", function(state) _G.InfCash = state spawn(function() while _G.InfCash do task.wait(0.5) pcall(function() if player:FindFirstChild("leaderstats") then local ls = player.leaderstats local cash = ls:FindFirstChild("Cash") or ls:FindFirstChild("Money") or ls:FindFirstChild("Coins") if cash then cash.Value = 200000 end end end) end end) end) Section3:NewToggle("Infinite 50k Minutes", "Auto sets Minutes/VIP to 50,000", function(state) _G.InfMinutes = state spawn(function() while _G.InfMinutes do task.wait(0.5) pcall(function() if player:FindFirstChild("leaderstats") then local ls = player.leaderstats local minutes = ls:FindFirstChild("Minutes") or ls:FindFirstChild("VIP Minutes") or ls:FindFirstChild("VIP") if minutes then minutes.Value = 50000 end end end) end end) end) Section3:NewButton("Instant Claim 200k Cash + 50k Minutes", "One-time boost", function() pcall(function() if player:FindFirstChild("leaderstats") then local ls = player.leaderstats local cash = ls:FindFirstChild("Cash") or ls:FindFirstChild("Money") or ls:FindFirstChild("Coins") if cash then cash.Value = 200000 end local minutes = ls:FindFirstChild("Minutes") or ls:FindFirstChild("VIP Minutes") or ls:FindFirstChild("VIP") if minutes then minutes.Value = 50000 end end end) Library:Notify("Claimed 200k Cash + 50k Minutes!", 5) end) local Tab4 = Window:NewTab("Visuals") local Section4 = Tab4:NewSection("ESP") Section4:NewToggle("Player ESP", "See players thru walls", function(state) _G.ESP = state if _G.ESP then for _, plr in pairs(game.Players:GetPlayers()) do if plr ~= player and plr.Character and plr.Character:FindFirstChild("Head") then local esp = Instance.new("BillboardGui", plr.Character.Head) esp.Name = "ESP" esp.Size = UDim2.new(0,100,0,50) esp.StudsOffset = Vector3.new(0,2,0) esp.AlwaysOnTop = true local name = Instance.new("TextLabel", esp) name.Size = UDim2.new(1,0,1,0) name.BackgroundTransparency = 1 name.Text = plr.Name .. "\n[" .. math.floor((plr.Character.HumanoidRootPart.Position - player.Character.HumanoidRootPart.Position).Magnitude) .. "m]" name.TextColor3 = Color3.new(1,0,0) name.TextStrokeTransparency = 0 name.TextScaled = true name.Font = Enum.Font.GothamBold end end else for _, plr in pairs(game.Players:GetPlayers()) do if plr.Character then local esp = plr.Character.Head:FindFirstChild("ESP") if esp then esp:Destroy() end end end end end) print("PCF Arcade Hub v2 Loaded! GUI Open - FREE CASH/MINUTES FARM ACTIVE! 🚀💰")