-- [[ 1. FUNGSI PATCHER & AI LOGIC (450x300 Green Edition) ]] -- local function applySlimyPatch() local targetSize = UDim2.new(0, 450, 0, 300) local greenTheme = Color3.fromRGB(0, 255, 0) local darkBg = Color3.fromRGB(5, 20, 5) local function patch(child) if child:IsA("ScreenGui") then task.wait(0.5) local mainFrame = child:FindFirstChildOfClass("Frame") or child:FindFirstChild("Main") if mainFrame then -- 1. PAKSA SAIZ 450x300 mainFrame.Size = targetSize mainFrame.Position = UDim2.new(0.5, -225, 0.5, -150) mainFrame.BackgroundColor3 = darkBg mainFrame.BorderColor3 = greenTheme mainFrame.BorderSizePixel = 2 local chatFrame = nil local textBox = nil for _, v in pairs(mainFrame:GetDescendants()) do -- 2. TUKAR TAJUK & WARNA TEKS if v:IsA("TextLabel") then v.TextColor3 = greenTheme if v.Text:lower():find("ai") or v.Text:lower():find("chat") then v.Text = "Slimy Ai" end -- 3. UNLIMITED SAY SETUP elseif v:IsA("ScrollingFrame") then chatFrame = v v.CanvasSize = UDim2.new(0, 0, 0, 0) v.AutomaticCanvasSize = Enum.AutomaticSize.Y v.ScrollBarImageColor3 = greenTheme elseif v:IsA("TextBox") then textBox = v v.BackgroundColor3 = Color3.fromRGB(15, 40, 15) v.TextColor3 = Color3.fromRGB(255, 255, 255) elseif v:IsA("TextButton") then v.BackgroundColor3 = Color3.fromRGB(0, 80, 0) v.TextColor3 = Color3.fromRGB(255, 255, 255) end end -- 4. FUNGSI JAWAPAN AI (UNLIMITED) local function SlimySpeak(input) task.wait(0.5) local text = input:lower() local reply = "" if text:find("phan") or text:find("slime") then reply = "No Phan /Slime Is my respect king." else local responses = { "HAHAHA! Get good kid! L + Ratio.", "Imagine asking me that... embarrassing.", "LOL! You're literally mid. Try harder.", "I'm Slimy Ai, I don't talk to noobs.", "Error: Skill not found in your account. HAHA!" } reply = responses[math.random(1, #responses)] end if chatFrame then local label = Instance.new("TextLabel", chatFrame) label.Size = UDim2.new(1, -10, 0, 30) label.BackgroundTransparency = 1 label.Text = "[Slimy Ai]: " .. reply label.TextColor3 = Color3.fromRGB(0, 255, 100) label.TextXAlignment = Enum.TextXAlignment.Left label.Font = Enum.Font.Code label.TextWrapped = true chatFrame.CanvasPosition = Vector2.new(0, 999999) end end if textBox then textBox.FocusLost:Connect(function(enter) if enter and textBox.Text ~= "" then SlimySpeak(textBox.Text) end end) end end end end game:GetService("CoreGui").ChildAdded:Connect(patch) game:GetService("Players").LocalPlayer:WaitForChild("PlayerGui").ChildAdded:Connect(patch) end -- [[ 2. LOAD PHANWARE BASE ]] -- loadstring(game:HttpGet("https://pastebin.com/raw/VNMyg80q"))() -- [[ 3. MODIFIKASI BUTANG EXECUTE ]] -- task.spawn(function() local pg = game:GetService("Players").LocalPlayer:WaitForChild("PlayerGui") while task.wait(1) do local gui = pg:FindFirstChild("PhanWare_V10_Slimy") if gui then local frame = gui:FindFirstChild("Frame") if frame then for _, btn in pairs(frame:GetDescendants()) do -- Cari butang Execute Slimy AI dalam menu if btn:IsA("TextButton") and btn.Text == "Execute Slimy AI" then -- Tukar fungsi butang btn.MouseButton1Click:Connect(function() task.spawn(applySlimyPatch) -- Aktifkan Patcher Hijau & Saiz loadstring(game:HttpGet("https://rawscripts.net/raw/Universal-Script-Ai-Chatbot-180730"))() end) return -- Berhenti loop jika sudah berjaya end end end end end end)