-- c00lkidd Mobile Executor v9 local UserInputService = game:GetService("UserInputService") local CoreGui = game:GetService("CoreGui") local sg = Instance.new("ScreenGui", CoreGui) sg.Name = "c00lkidd_Ultimate" sg.ResetOnSpawn = false -- CONFIG local CorrectKey = "c00lkidd_private_2026" -- CUSTOM DRAG FUNCTION local function makeDraggable(frame, handle) local dragging, dragInput, dragStart, startPos handle.InputBegan:Connect(function(input) if input.UserInputType == Enum.UserInputType.MouseButton1 or input.UserInputType == Enum.UserInputType.Touch then dragging = true dragStart = input.Position startPos = frame.Position end end) UserInputService.InputChanged:Connect(function(input) if dragging and (input.UserInputType == Enum.UserInputType.MouseMovement or input.UserInputType == Enum.UserInputType.Touch) then local delta = input.Position - dragStart frame.Position = UDim2.new(startPos.X.Scale, startPos.X.Offset + delta.X, startPos.Y.Scale, startPos.Y.Offset + delta.Y) end end) UserInputService.InputEnded:Connect(function(input) if input.UserInputType == Enum.UserInputType.MouseButton1 or input.UserInputType == Enum.UserInputType.Touch then dragging = false end end) end -- 1. TOGGLE BUTTON (C) local ToggleBtn = Instance.new("TextButton", sg) ToggleBtn.Size = UDim2.new(0, 50, 0, 50) ToggleBtn.Position = UDim2.new(0, 10, 0.5, -25) ToggleBtn.BackgroundColor3 = Color3.fromRGB(150, 0, 0) ToggleBtn.Text = "C" ToggleBtn.TextColor3 = Color3.new(1, 1, 1) ToggleBtn.Font = Enum.Font.SourceSansBold ToggleBtn.TextSize = 25 ToggleBtn.Visible = false makeDraggable(ToggleBtn, ToggleBtn) -- 2. KEY SYSTEM local KeyFrame = Instance.new("Frame", sg) KeyFrame.Size = UDim2.new(0, 280, 0, 160) KeyFrame.Position = UDim2.new(0.5, -140, 0.4, -80) KeyFrame.BackgroundColor3 = Color3.new(0,0,0) KeyFrame.BorderColor3 = Color3.fromRGB(255, 0, 0) KeyFrame.BorderSizePixel = 2 makeDraggable(KeyFrame, KeyFrame) local KeyInput = Instance.new("TextBox", KeyFrame) KeyInput.Size = UDim2.new(0.8, 0, 0, 35) KeyInput.Position = UDim2.new(0.1, 0, 0.3, 0) KeyInput.PlaceholderText = "Enter Key..." KeyInput.Text = "" KeyInput.BackgroundColor3 = Color3.fromRGB(30,30,30) KeyInput.TextColor3 = Color3.new(1,0,0) local VerifyBtn = Instance.new("TextButton", KeyFrame) VerifyBtn.Size = UDim2.new(0.8, 0, 0, 35) VerifyBtn.Position = UDim2.new(0.1, 0, 0.65, 0) VerifyBtn.Text = "VERIFY" VerifyBtn.BackgroundColor3 = Color3.fromRGB(120, 0, 0) VerifyBtn.TextColor3 = Color3.new(1,1,1) -- 3. MAIN UI local Main = Instance.new("Frame", sg) Main.Visible = false Main.Size = UDim2.new(0, 360, 0, 300) Main.Position = UDim2.new(0.5, -180, 0.3, 0) Main.BackgroundColor3 = Color3.new(0,0,0) Main.BorderColor3 = Color3.fromRGB(255, 0, 0) Main.BorderSizePixel = 2 local Title = Instance.new("TextLabel", Main) Title.Size = UDim2.new(1, 0, 0, 35) Title.BackgroundColor3 = Color3.fromRGB(150, 0, 0) Title.Text = "c00lkidd executor v9" Title.TextColor3 = Color3.new(1,1,1) makeDraggable(Main, Title) local Editor = Instance.new("TextBox", Main) Editor.Size = UDim2.new(0.94, 0, 0, 180) Editor.Position = UDim2.new(0.03, 0, 0.15, 0) Editor.MultiLine = true Editor.Text = "" Editor.PlaceholderText = "-- Script Here --" Editor.BackgroundColor3 = Color3.fromRGB(20,20,20) Editor.TextColor3 = Color3.new(1,0,0) Editor.TextXAlignment = Enum.TextXAlignment.Left Editor.TextYAlignment = Enum.TextYAlignment.Top Editor.ClearTextOnFocus = false -- 4. BUTTONS local function btn(txt, x, color, func) local b = Instance.new("TextButton", Main) b.Size = UDim2.new(0, 100, 0, 35) b.Position = UDim2.new(0, x, 0, 255) b.Text = txt b.BackgroundColor3 = color b.TextColor3 = Color3.new(1,1,1) b.MouseButton1Click:Connect(func) end btn("EXECUTE", 10, Color3.fromRGB(150,0,0), function() local s, e = pcall(function() loadstring(Editor.Text)() end) if not s then warn(e) end end) btn("CLEAR", 125, Color3.fromRGB(60,60,60), function() Editor.Text = "" end) btn("SAVE", 240, Color3.fromRGB(0,100,0), function() if writefile then writefile("c00lkidd_save.txt", Editor.Text) end end) -- 5. LOGIC ToggleBtn.MouseButton1Click:Connect(function() Main.Visible = not Main.Visible end) VerifyBtn.MouseButton1Click:Connect(function() if KeyInput.Text == CorrectKey then KeyFrame:Destroy() Main.Visible = true ToggleBtn.Visible = true if readfile and pcall(function() readfile("c00lkidd_save.txt") end) then Editor.Text = readfile("c00lkidd_save.txt") end else KeyInput.Text = "" KeyInput.PlaceholderText = "INVALID" end end)