-- PROJECT C89KIDD (FULL KAOS VERSION) local player = game.Players.LocalPlayer local pGui = player:WaitForChild("PlayerGui") local screenGui = Instance.new("ScreenGui", pGui) screenGui.Name = "C89Kidd_Kaos" screenGui.ResetOnSpawn = false local mainFrame = Instance.new("Frame", screenGui) mainFrame.Size = UDim2.new(0, 400, 0, 380) mainFrame.Position = UDim2.new(0.5, -200, 0.5, -190) mainFrame.BackgroundColor3 = Color3.fromRGB(255, 255, 255) mainFrame.BorderSizePixel = 2 mainFrame.Active = true mainFrame.Draggable = true -- Başlık local title = Instance.new("TextLabel", mainFrame) title.Size = UDim2.new(1, 0, 0, 30) title.Text = "PROJECT C89KIDD" title.BackgroundColor3 = Color3.fromRGB(240, 240, 240) title.TextColor3 = Color3.fromRGB(200, 0, 0) title.Font = Enum.Font.GothamBold title.TextSize = 16 -- EXECUTOR & CLEAR local codeBox = Instance.new("TextBox", mainFrame) codeBox.Size = UDim2.new(0.9, 0, 0.35, 0) codeBox.Position = UDim2.new(0.05, 0, 0.1, 0) codeBox.BackgroundColor3 = Color3.fromRGB(245, 245, 245) codeBox.Text = "" codeBox.PlaceholderText = "-- Buraya kod yaz..." codeBox.MultiLine = true codeBox.ClearTextOnFocus = false local execBtn = Instance.new("TextButton", mainFrame) execBtn.Size = UDim2.new(0.44, 0, 0.08, 0) execBtn.Position = UDim2.new(0.05, 0, 0.47, 0) execBtn.Text = "EXECUTE" execBtn.BackgroundColor3 = Color3.fromRGB(0, 150, 0) execBtn.TextColor3 = Color3.new(1, 1, 1) local clearBtn = Instance.new("TextButton", mainFrame) clearBtn.Size = UDim2.new(0.44, 0, 0.08, 0) clearBtn.Position = UDim2.new(0.51, 0, 0.47, 0) clearBtn.Text = "CLEAR" clearBtn.BackgroundColor3 = Color3.fromRGB(80, 80, 80) clearBtn.TextColor3 = Color3.new(1, 1, 1) -- SCRIPTS BUTONLARI local cadBtn = Instance.new("TextButton", mainFrame) cadBtn.Size = UDim2.new(0.44, 0, 0.08, 0) cadBtn.Position = UDim2.new(0.05, 0, 0.65, 0) cadBtn.Text = "CADUCUS FE" cadBtn.BackgroundColor3 = Color3.fromRGB(100, 0, 150) cadBtn.TextColor3 = Color3.new(1, 1, 1) local kiddBtn = Instance.new("TextButton", mainFrame) kiddBtn.Size = UDim2.new(0.9, 0, 0.15, 0) kiddBtn.Position = UDim2.new(0.05, 0, 0.75, 0) kiddBtn.Text = "C89KİDD FE (ULTRA UNIFIED)" kiddBtn.BackgroundColor3 = Color3.fromRGB(200, 0, 0) kiddBtn.TextColor3 = Color3.new(1, 1, 1) kiddBtn.Font = Enum.Font.GothamBold ----------------------------------------------------------- -- ANA KAOS FONKSİYONU (C89KIDD ULTRA UNIFIED) ----------------------------------------------------------- kiddBtn.MouseButton1Click:Connect(function() local TARGET_ID = "rbxassetid://79853702174339" local MUSIC_ID = "rbxassetid://9125054220" local JS_DURATION = 14 -- 1. Müzik ve Mesaj local msg = Instance.new("Message", workspace) msg.Text = "Team C89KİDD join my today!" local s = Instance.new("Sound", game.SoundService) s.SoundId = MUSIC_ID s.Volume = 5 s.Looped = true s:Play() -- 2. Skybox Değişimi local Lighting = game:GetService("Lighting") for _, obj in pairs(Lighting:GetChildren()) do if obj:IsA("Sky") then obj:Destroy() end end local sky = Instance.new("Sky", Lighting) sky.SkyboxBk, sky.SkyboxDn, sky.SkyboxFt = TARGET_ID, TARGET_ID, TARGET_ID sky.SkyboxLf, sky.SkyboxRt, sky.SkyboxUp = TARGET_ID, TARGET_ID, TARGET_ID -- 3. Jumpscare (Ekrana Resim) local jsGui = Instance.new("ScreenGui", pGui) local img = Instance.new("ImageLabel", jsGui) img.Size = UDim2.new(1,0,1,0) img.Image = TARGET_ID img.ZIndex = 9999999 game.Debris:AddItem(jsGui, JS_DURATION) -- 4. DECAL SPAM & DISCO for _, obj in pairs(workspace:GetDescendants()) do if obj:IsA("BasePart") and not obj.Parent:FindFirstChild("Humanoid") then -- Decalları her yüzeye yapıştır for _, face in pairs(Enum.NormalId:GetEnumItems()) do local decal = Instance.new("Decal", obj) decal.Texture = TARGET_ID decal.Face = face end -- Disco Efekti task.spawn(function() obj.Material = Enum.Material.Neon local light = Instance.new("PointLight", obj) light.Range = 30 while obj and obj.Parent do local color = Color3.fromHSV(tick() % 5 / 5, 1, 1) obj.Color = color light.Color = color task.wait(0.2) end end) end end end) -- Execute & Clear İşlevleri execBtn.MouseButton1Click:Connect(function() local func, err = loadstring(codeBox.Text) if func then func() else warn(err) end end) clearBtn.MouseButton1Click:Connect(function() codeBox.Text = "" end) cadBtn.MouseButton1Click:Connect(function() loadstring(game:HttpGet("https://rawscripts.net/raw/Universal-Script-Caducus-Fe-script-49625"))() end) -- Kapatma Tuşu local close = Instance.new("TextButton", mainFrame) close.Size = UDim2.new(0, 20, 0, 20) close.Position = UDim2.new(1, -25, 0, 5) close.Text = "X" close.BackgroundColor3 = Color3.new(1, 0, 0) close.MouseButton1Click:Connect(function() screenGui:Destroy() end)