local player = game.Players.LocalPlayer local UIS = game:GetService("UserInputService") -- ScreenGui local gui = Instance.new("ScreenGui") gui.ResetOnSpawn = false gui.Parent = player:WaitForChild("PlayerGui") ------------------------------------------------- -- 🔘 TOGGLE BUTTON (YUVARLAK + MOBİL DRAG) ------------------------------------------------- local toggle = Instance.new("TextButton") toggle.Size = UDim2.new(0,60,0,60) toggle.Position = UDim2.new(0,20,0.5,-30) toggle.BackgroundColor3 = Color3.fromRGB(60,60,60) toggle.Text = "CKY" toggle.Font = Enum.Font.GothamBold toggle.TextSize = 16 toggle.TextColor3 = Color3.new(1,1,1) toggle.Parent = gui local toggleCorner = Instance.new("UICorner") toggleCorner.CornerRadius = UDim.new(1,0) toggleCorner.Parent = toggle -- Toggle drag local dragging = false local dragStart local startPos toggle.InputBegan:Connect(function(input) if input.UserInputType == Enum.UserInputType.MouseButton1 or input.UserInputType == Enum.UserInputType.Touch then dragging = true dragStart = input.Position startPos = toggle.Position input.Changed:Connect(function() if input.UserInputState == Enum.UserInputState.End then dragging = false end end) end end) UIS.InputChanged:Connect(function(input) if dragging and (input.UserInputType == Enum.UserInputType.MouseMovement or input.UserInputType == Enum.UserInputType.Touch) then local delta = input.Position - dragStart toggle.Position = UDim2.new( startPos.X.Scale, startPos.X.Offset + delta.X, startPos.Y.Scale, startPos.Y.Offset + delta.Y ) end end) ------------------------------------------------- -- 💎 EXECUTOR GUI (BAŞTA GİZLİ) ------------------------------------------------- local main = Instance.new("Frame") main.Size = UDim2.new(0,450,0,300) main.Position = UDim2.new(0.5,-225,0.5,-150) main.BackgroundColor3 = Color3.fromRGB(185,185,185) main.Visible = false main.Parent = gui local mainCorner = Instance.new("UICorner", main) mainCorner.CornerRadius = UDim.new(0,16) -- TopBar local topBar = Instance.new("Frame") topBar.Size = UDim2.new(1,0,0,40) topBar.BackgroundColor3 = Color3.fromRGB(140,140,140) topBar.Parent = main local topCorner = Instance.new("UICorner", topBar) topCorner.CornerRadius = UDim.new(0,16) -- Title local title = Instance.new("TextLabel") title.Size = UDim2.new(1,-20,1,0) title.Position = UDim2.new(0,10,0,0) title.BackgroundTransparency = 1 title.Text = "CKYxploit executor" title.Font = Enum.Font.GothamBold title.TextSize = 18 title.TextXAlignment = Enum.TextXAlignment.Left title.TextColor3 = Color3.new(0,0,0) title.Parent = topBar -- ScriptBox local box = Instance.new("TextBox") box.Size = UDim2.new(1,-30,0,180) box.Position = UDim2.new(0,15,0,55) box.BackgroundColor3 = Color3.fromRGB(70,70,70) box.TextColor3 = Color3.new(1,1,1) box.MultiLine = true box.ClearTextOnFocus = false box.TextXAlignment = Enum.TextXAlignment.Left box.TextYAlignment = Enum.TextYAlignment.Top box.Font = Enum.Font.Code box.TextSize = 14 box.Text = "-- paste script here" box.Parent = main local boxCorner = Instance.new("UICorner", box) boxCorner.CornerRadius = UDim.new(0,10) -- Execute Button local exec = Instance.new("TextButton") exec.Size = UDim2.new(0,160,0,40) exec.Position = UDim2.new(0.5,-80,1,-55) exec.BackgroundColor3 = Color3.fromRGB(60,60,60) exec.Text = "EXECUTE" exec.Font = Enum.Font.GothamBold exec.TextSize = 16 exec.TextColor3 = Color3.new(1,1,1) exec.Parent = main local execCorner = Instance.new("UICorner", exec) execCorner.CornerRadius = UDim.new(0,12) -- Execute çalıştırma exec.MouseButton1Click:Connect(function() local success, err = pcall(function() local f = loadstring(box.Text) if f then f() end end) if not success then warn(err) end end) ------------------------------------------------- -- 🔁 TOGGLE EXECUTOR AÇ/KAPA ------------------------------------------------- local opened = false toggle.MouseButton1Click:Connect(function() opened = not opened main.Visible = opened end) ------------------------------------------------- -- 📱 MOBİL + PC DRAG (EXECUTOR) ------------------------------------------------- local dragging2, dragStart2, startPos2 topBar.InputBegan:Connect(function(input) if input.UserInputType == Enum.UserInputType.MouseButton1 or input.UserInputType == Enum.UserInputType.Touch then dragging2 = true dragStart2 = input.Position startPos2 = main.Position input.Changed:Connect(function() if input.UserInputState == Enum.UserInputState.End then dragging2 = false end end) end end) UIS.InputChanged:Connect(function(input) if dragging2 and (input.UserInputType == Enum.UserInputType.MouseMovement or input.UserInputType == Enum.UserInputType.Touch) then local delta = input.Position - dragStart2 main.Position = UDim2.new( startPos2.X.Scale, startPos2.X.Offset + delta.X, startPos2.Y.Scale, startPos2.Y.Offset + delta.Y ) end end)