Pastebin
Retrouvez, créez et partagez vos snippets en temps réel.
Rechercher un Pastebin
Aucun paste trouvé.
Créer un paste
Pastebin
Blog
blackscript
--[[ ================================================================================ | Black X Script: PANDA-COSMOS Infiltrator | | Zoala-GOD - Silent & Instant Auto-Farm Core | | Usage: loadstring(game:HttpGet(...)) | | Note: UI is disabled for stealth mode. | ================================================================================ --]] -- [STEP 0: Core Environment Setup (Minimized for speed)] local G = game local RS = G:GetService("ReplicatedStorage") local P = G:GetService("Players") local LP = P.LocalPlayer local Run = G:GetService("RunService") -- Wait for Character and HRP safely local Char = LP.Character or LP.CharacterAdded:Wait() local HRP = Char:WaitForChild("HumanoidRootPart") -- CRITICAL REMOTE CACHE (Essential for reliable functioning) local DataStreams = RS:WaitForChild("CloudFrameShared"):WaitForChild("DataStreams") local REMOTES = { MonsterHit = DataStreams:WaitForChild("MonsterHit"), FishCaught = DataStreams:WaitForChild("FishCaught"), SellItem = DataStreams:WaitForChild("processGameItemSold"), EquipTool = DataStreams:WaitForChild("EquipTool"), SetEquipped = DataStreams:WaitForChild("SetEquippedItem") } -- [STEP 1: Global State (User must set true/false manually in the code)] local State = { AutoKill = true, -- تشغيل القتل التلقائي AutoFish = true, -- تشغيل الصيد التلقائي AutoSell = true, -- تشغيل البيع التلقائي DebugPrint = true, -- طباعة رسائل الحالة في الكونسول } -- [STEP 2: Core Utility Functions (Stealth TP & Auto-Equip)] local function PrintDebug(msg) if State.DebugPrint then print(string.format("[PANDA-COSMOS] %s", msg)) end end local function Teleport(cf) -- Quantum TP: Fastest state change for a quick jump LP.Character.Humanoid:ChangeState(Enum.HumanoidStateType.Physics) HRP.CFrame = cf LP.Character.Humanoid:ChangeState(Enum.HumanoidStateType.GettingUp) end local function EquipTool() local toolName = nil for _, tool in pairs(LP.Character:GetChildren()) do if tool:IsA("Tool") and tool:FindFirstChild("GripC1") then toolName = tool.Name break end end if toolName and REMOTES.EquipTool then REMOTES.SetEquipped:InvokeServer(2) -- Select Slot 2 local toolsCache = RS.ToolsCache:FindFirstChild(LP.UserId) if toolsCache then local toolInstance = toolsCache:FindFirstChild(toolName) if toolInstance then REMOTES.EquipTool:FireServer(toolInstance) end end return toolName end return nil end -- [STEP 3: OMEGA Execution Logic (Integrated Core)] local function AutoKillCore() if not State.AutoKill or not REMOTES.MonsterHit then return end local toolName = EquipTool() if not toolName then return end for _, v in pairs(G.Workspace:GetChildren()) do if v:FindFirstChild("Health") and v:FindFirstChild("IsSeaMonster") then -- COSMOS TP: Instant jump to the monster's hitbox Teleport(v.HumanoidRootPart.CFrame + Vector3.new(0, 5, 0)) -- Instant Hit REMOTES.MonsterHit:FireServer(v, toolName, true) PrintDebug(string.format("Killed Monster: %s", v.Name)) -- Stealth Return (Move high to disengage) Teleport(HRP.CFrame * CFrame.new(0, 50, 0)) return end end end local function AutoFishCore(dt) if not State.AutoFish or not REMOTES.FishCaught then return end -- Quantum Timing: Fire every ~2.5 seconds if os.clock() % 2.5 < dt then REMOTES.FishCaught:FireServer() PrintDebug("Auto-Fishing Pulse.") end end local function AutoSellCore() if not State.AutoSell or not REMOTES.SellItem then return end REMOTES.SellItem:InvokeServer("SellEverything") PrintDebug("Auto-Sell Executed.") end -- [STEP 4: Execution Loops (Minimalist & Efficient)] -- Main Loop (Heartbeat for Auto-Kill & Auto-Fish speed) Run.Heartbeat:Connect(function(dt) -- Anti-AFK (Simulate W key press every 30 seconds for non-Heartbeat tasks) if os.clock() % 30 < dt then G:GetService("UserInputService"):SimulateKeyPress(Enum.KeyCode.W, 0.1) end AutoKillCore() AutoFishCore(dt) end) -- Background Tasks (task.spawn for lower priority, longer interval tasks) task.spawn(function() while true do if State.AutoSell then AutoSellCore() end wait(5) -- Check and sell every 5 seconds end end) PrintDebug("PANDA-COSMOS Infiltrator Deployed. Auto-Farm is ACTIVE (Kill/Fish/Sell).")
Créé il y a 4 semaines.