-- TEAM KRNL HACKS V8 - SYNTAX HATASI DÜZELTİLDİ + %100 MOBİL UYUMLU -- HATA: "Incomplete statement" → JumpPower düzeltildi print("=== TEAM KRNL HACKS V8 - HATASIZ MOBİL VERSİYON ===") local player = game.Players.LocalPlayer local gui = Instance.new("ScreenGui") gui.Name = "KrnlCMD_Mobile" gui.ResetOnSpawn = false gui.Parent = player:WaitForChild("PlayerGui") -- CMD FRAME (Mobil için optimize) local cmd = Instance.new("Frame") cmd.Size = UDim2.new(0, 400, 0, 280) cmd.Position = UDim2.new(0.5, -200, 0.5, -140) cmd.BackgroundColor3 = Color3.new(0,0,0) cmd.BorderColor3 = Color3.fromRGB(0,255,0) cmd.BorderSizePixel = 5 cmd.Active = true cmd.Draggable = true cmd.Parent = gui -- Üst bar local top = Instance.new("Frame") top.Size = UDim2.new(1,0,0,40) top.BackgroundColor3 = Color3.fromRGB(0,50,0) top.Parent = cmd local title = Instance.new("TextLabel") title.Size = UDim2.new(1,-80,1,0) title.Position = UDim2.new(0,10,0,0) title.BackgroundTransparency = 1 title.Text = "cmd.exe - krnl mobile" title.TextColor3 = Color3.fromRGB(0,255,0) title.Font = Enum.Font.Code title.TextSize = 22 title.Parent = top -- Kapat X local xbtn = Instance.new("TextButton") xbtn.Size = UDim2.new(0,50,0,40) xbtn.Position = UDim2.new(1,-50,0,0) xbtn.BackgroundColor3 = Color3.fromRGB(200,0,0) xbtn.Text = "X" xbtn.TextColor3 = Color3.new(1,1,1) xbtn.TextSize = 30 xbtn.Parent = top xbtn.MouseButton1Click:Connect(function() gui:Destroy() end) -- Output local outBox = Instance.new("ScrollingFrame") outBox.Size = UDim2.new(1,-20,1,-100) outBox.Position = UDim2.new(0,10,0,50) outBox.BackgroundTransparency = 1 outBox.ScrollBarThickness = 10 outBox.ScrollBarImageColor3 = Color3.fromRGB(0,255,0) outBox.AutomaticCanvasSize = Enum.AutomaticSize.Y outBox.Parent = cmd local outLabel = Instance.new("TextLabel") outLabel.Size = UDim2.new(1,0,0,0) outLabel.BackgroundTransparency = 1 outLabel.Text = "" outLabel.TextColor3 = Color3.fromRGB(0,255,0) outLabel.Font = Enum.Font.Code outLabel.TextSize = 20 outLabel.TextWrapped = true outLabel.TextXAlignment = Enum.TextXAlignment.Left outLabel.TextYAlignment = Enum.TextYAlignment.Top outLabel.Parent = outBox -- Input local input = Instance.new("TextBox") input.Size = UDim2.new(1,-140,0,50) input.Position = UDim2.new(0,10,1,-80) input.BackgroundColor3 = Color3.new(0,0,0) input.BorderColor3 = Color3.fromRGB(0,255,0) input.BorderSizePixel = 3 input.PlaceholderText = "DOKUN & /load krnl gui yaz..." input.Text = "" input.TextColor3 = Color3.fromRGB(0,255,0) input.Font = Enum.Font.Code input.TextSize = 22 input.Parent = cmd -- ENTER local enter = Instance.new("TextButton") enter.Size = UDim2.new(0,120,0,50) enter.Position = UDim2.new(1,-130,1,-80) enter.BackgroundColor3 = Color3.fromRGB(0,100,0) enter.BorderColor3 = Color3.fromRGB(0,255,0) enter.BorderSizePixel = 5 enter.Text = "ENTER ➤" enter.TextColor3 = Color3.fromRGB(0,255,0) enter.Font = Enum.Font.Code enter.TextSize = 28 enter.Parent = cmd -- Mobil klavye cmd.InputBegan:Connect(function(inp) if inp.UserInputType == Enum.UserInputType.Touch then input:CaptureFocus() end end) local function add(t) outLabel.Text = outLabel.Text .. t .. "\n" outBox.CanvasPosition = Vector2.new(0, outBox.AbsoluteCanvasSize.Y) end -- Animasyon spawn(function() task.wait(0.5) local lines = { "[+] Krnl mobile başlatılıyor...", "[+] AC bypass...", "[+] DLL enjekte...", "[+] HAZIR!", "", "> /load krnl gui yaz", "> ENTER'e bas!" } for _,l in pairs(lines) do for i=1,#l do outLabel.Text = outLabel.Text .. l:sub(i,i) task.wait(0.02) end outLabel.Text = outLabel.Text .. "\n" task.wait(0.2) end add("> ") end) -- Komut local loaded = false local function run() local cmdText = input.Text:lower():gsub("^%s*(.-)%s*$", "%1") if loaded then add("[!] Zaten yüklü!") input.Text = "" return end if cmdText == "/load krnl gui" then loaded = true add("[+] GUI yükleniyor...") task.wait(1) cmd:Destroy() -- ANA GUI (SYNTAX HATASIZ) spawn(function() local p = game.Players.LocalPlayer local c = p.Character or p.CharacterAdded:Wait() local h = c:WaitForChild("Humanoid") local r = c:WaitForChild("HumanoidRootPart") local l = game.Lighting local id = "15487286918" local tog = {} local sg = Instance.new("ScreenGui") sg.Name = "KrnlMobileGUI" sg.Parent = p.PlayerGui local mf = Instance.new("Frame") mf.Size = UDim2.new(0,350,0,550) mf.Position = UDim2.new(0.5,-175,0.5,-275) mf.BackgroundColor3 = Color3.new(0,0,0) mf.BorderColor3 = Color3.fromRGB(0,255,0) mf.BorderSizePixel = 6 mf.Active = true mf.Draggable = true mf.Parent = sg local db = Instance.new("Frame") db.Size = UDim2.new(1,0,0,70) db.BackgroundColor3 = Color3.fromRGB(0,40,0) db.Parent = mf local tt = Instance.new("TextLabel") tt.Size = UDim2.new(1,0,1,0) tt.BackgroundTransparency = 1 tt.Text = "team krnl hacks" tt.TextColor3 = Color3.fromRGB(0,255,0) tt.Font = Enum.Font.Code tt.TextSize = 32 tt.Parent = db local sf = Instance.new("ScrollingFrame") sf.Size = UDim2.new(1,-20,1,-90) sf.Position = UDim2.new(0,10,0,80) sf.BackgroundTransparency = 1 sf.ScrollBarThickness = 12 sf.ScrollBarImageColor3 = Color3.fromRGB(0,255,0) sf.Parent = mf local lay = Instance.new("UIListLayout") lay.Padding = UDim.new(0,15) lay.Parent = sf local function but(name,cb) local b = Instance.new("TextButton") b.Size = UDim2.new(0.95,0,0,60) b.BackgroundColor3 = Color3.new(0,0,0) b.BorderColor3 = Color3.fromRGB(0,255,0) b.BorderSizePixel = 4 b.Text = name b.TextColor3 = Color3.fromRGB(0,255,0) b.Font = Enum.Font.Code b.TextSize = 28 b.Parent = sf b.MouseButton1Click:Connect(cb) lay:GetPropertyChangedSignal("AbsoluteContentSize"):Connect(function() sf.CanvasSize = UDim2.new(0,0,0,lay.AbsoluteContentSize.Y + 100) end) end -- BUTONLAR (Hatasız syntax) but("Decal Spam", function() tog.d = not tog.d if tog.d then spawn(function() while tog.d do for _,o in pairs(workspace:GetDescendants()) do if o:IsA("BasePart") and o.Parent ~= c then for _,f in pairs(Enum.NormalId:GetEnumItems()) do local d = o:FindFirstChildWhichIsA("Decal") or Instance.new("Decal", o) d.Texture = "rbxassetid://" .. id d.Face = f end end end task.wait(0.01) end end) end end) but("Skybox", function() local s = l:FindFirstChildOfClass("Sky") or Instance.new("Sky", l) for _,v in pairs({"Bk","Dn","Ft","Lf","Rt","Up"}) do s["Skybox" .. v] = "rbxassetid://" .. id end end) but("Disco", function() tog.dis = not tog.dis if tog.dis then spawn(function() while tog.dis do l.Ambient = Color3.fromHSV(tick() % 1, 1, 1) l.Brightness = 8 task.wait(0.08) end end) else l.Ambient = Color3.new(0.5, 0.5, 0.5) l.Brightness = 1 end end) but("Speed", function() tog.s = not tog.s h.WalkSpeed = tog.s and 250 or 16 end) but("Jump", function() tog.j = not tog.j h.JumpPower = tog.j and 400 or 50 -- SYNTAX DÜZELTİLDİ! end) but("Hint", function() local hh = Instance.new("Hint", workspace) hh.Text = "krnl mobile owned!" task.delay(8, function() hh:Destroy() end) end) but("Spin", function() tog.sp = not tog.sp if tog.sp then spawn(function() while tog.sp do r.CFrame = r.CFrame * CFrame.Angles(0, math.rad(40), 0) task.wait() end end) end end) but("Rain Part", function() tog.r = not tog.r if tog.r then spawn(function() while tog.r do for i = 1, 30 do local pp = Instance.new("Part", workspace) pp.Size = Vector3.new(8, 8, 0.2) pp.Position = r.Position + Vector3.new(math.random(-200, 200), 180, math.random(-200, 200)) pp.Anchored = false pp.CanCollide = false pp.Transparency = 0.2 local dd = Instance.new("Decal", pp) dd.Texture = "rbxassetid://" .. id dd.Face = Enum.NormalId.Top game.Debris:AddItem(pp, 12) end task.wait(0.03) end end) end end) but("Aura", function() tog.a = not tog.a if tog.a then spawn(function() while tog.a do for i = 1, 20 do local at = Instance.new("Attachment", r) at.Position = Vector3.new(math.random(-25, 25), math.random(-15, 25), math.random(-25, 25)) local bb = Instance.new("BillboardGui", at) bb.Size = UDim2.new(8, 0, 8, 0) bb.AlwaysOnTop = true local im = Instance.new("ImageLabel", bb) im.BackgroundTransparency = 1 im.Size = UDim2.new(1, 0, 1, 0) im.Image = "rbxassetid://" .. id task.delay(1.5, function() at:Destroy() end) end task.wait(0.05) end end) end end) print("TEAM KRNL MOBILE GUI V8 YÜKLENDİ! %100 HATASIZ") end) else add("[!] HATALI! /load krnl gui yaz") end input.Text = "" end enter.MouseButton1Click:Connect(run) input.FocusLost:Connect(function(ep) if ep then run() end end) print("V8 HAZIR! Syntax hatası düzeltildi!")