local UIS = game:GetService("UserInputService") local ScreenGui = Instance.new("ScreenGui") local MainFrame = Instance.new("Frame") local KeyFrame = Instance.new("Frame") local Title = Instance.new("TextLabel") local ScriptBox = Instance.new("TextBox") local ExecBtn = Instance.new("TextButton") local SaveBtn = Instance.new("TextButton") local ClearBtn = Instance.new("TextButton") local ToggleBtn = Instance.new("TextButton") local BypassFrame = Instance.new("Frame") -- [ CONFIG ] -- local CorrectKey = "c00lkidd_join" ScreenGui.Name = "c00lkidd_Elite" ScreenGui.Parent = game:GetService("CoreGui") ScreenGui.ResetOnSpawn = false -- [ KEY UI ] -- KeyFrame.Name = "KeyFrame" KeyFrame.Parent = ScreenGui KeyFrame.BackgroundColor3 = Color3.fromRGB(0, 0, 0) KeyFrame.BorderColor3 = Color3.fromRGB(255, 0, 0) KeyFrame.BorderSizePixel = 2 KeyFrame.Position = UDim2.new(0.5, -150, 0.5, -50) KeyFrame.Size = UDim2.new(0, 300, 0, 150) local KeyInput = Instance.new("TextBox", KeyFrame) KeyInput.Size = UDim2.new(0.8, 0, 0, 40) KeyInput.Position = UDim2.new(0.1, 0, 0.25, 0) KeyInput.BackgroundColor3 = Color3.fromRGB(15, 15, 15) KeyInput.BorderColor3 = Color3.fromRGB(255, 0, 0) KeyInput.TextColor3 = Color3.fromRGB(255, 255, 255) KeyInput.PlaceholderText = "Enter Key..." KeyInput.Text = "" local SubmitBtn = Instance.new("TextButton", KeyFrame) SubmitBtn.Size = UDim2.new(0.5, 0, 0, 35) SubmitBtn.Position = UDim2.new(0.25, 0, 0.65, 0) SubmitBtn.BackgroundColor3 = Color3.fromRGB(0, 0, 0) SubmitBtn.BorderColor3 = Color3.fromRGB(255, 0, 0) SubmitBtn.Text = "LOGIN" SubmitBtn.TextColor3 = Color3.fromRGB(255, 0, 0) -- [ EXECUTOR UI ] -- MainFrame.Parent = ScreenGui MainFrame.BackgroundColor3 = Color3.fromRGB(0, 0, 0) MainFrame.BorderColor3 = Color3.fromRGB(255, 0, 0) MainFrame.BorderSizePixel = 2 MainFrame.Position = UDim2.new(0.5, -210, 0.5, -150) MainFrame.Size = UDim2.new(0, 420, 0, 320) MainFrame.Visible = false Title.Parent = MainFrame Title.BackgroundTransparency = 1 Title.Size = UDim2.new(1, 0, 0, 40) Title.Font = Enum.Font.SourceSansBold Title.Text = "fuck roblox team c00lkidd join today" Title.TextColor3 = Color3.fromRGB(255, 0, 0) Title.TextSize = 18 ScriptBox.Parent = MainFrame ScriptBox.BackgroundColor3 = Color3.fromRGB(0, 0, 0) ScriptBox.BorderColor3 = Color3.fromRGB(255, 0, 0) ScriptBox.Position = UDim2.new(0.05, 0, 0.15, 0) ScriptBox.Size = UDim2.new(0.65, 0, 0.55, 0) -- Made smaller to fit Bypass Hub ScriptBox.MultiLine = true ScriptBox.Text = "print('c00lkidd bypass active')" ScriptBox.TextColor3 = Color3.fromRGB(255, 255, 255) ScriptBox.Font = Enum.Font.Code ScriptBox.TextSize = 12 ScriptBox.TextXAlignment = 0 ScriptBox.TextYAlignment = 0 -- [ BYPASS HUB SECTION ] -- BypassFrame.Parent = MainFrame BypassFrame.BackgroundColor3 = Color3.fromRGB(10, 10, 10) BypassFrame.BorderColor3 = Color3.fromRGB(255, 0, 0) BypassFrame.Position = UDim2.new(0.72, 0, 0.15, 0) BypassFrame.Size = UDim2.new(0.23, 0, 0.55, 0) local function AddBypass(name, yPos, callback) local btn = Instance.new("TextButton", BypassFrame) btn.Size = UDim2.new(0.9, 0, 0, 25) btn.Position = UDim2.new(0.05, 0, 0, yPos) btn.BackgroundColor3 = Color3.fromRGB(0, 0, 0) btn.BorderColor3 = Color3.fromRGB(255, 0, 0) btn.Text = name btn.TextColor3 = Color3.fromRGB(255, 0, 0) btn.TextSize = 10 btn.MouseButton1Click:Connect(callback) end -- Bypass Features AddBypass("Noclip", 10, function() local speaker = game.Players.LocalPlayer game:GetService("RunService").Stepped:Connect(function() for _, v in pairs(speaker.Character:GetDescendants()) do if v:IsA("BasePart") then v.CanCollide = false end end end) end) AddBypass("Inf Jump", 45, function() game:GetService("UserInputService").JumpRequest:Connect(function() game.Players.LocalPlayer.Character:FindFirstChildOfClass("Humanoid"):ChangeState("Jumping") end) end) AddBypass("Anti-AFK", 80, function() local vu = game:GetService("VirtualUser") game:GetService("Players").LocalPlayer.Idled:Connect(function() vu:Button2Down(Vector2.new(0,0),workspace.CurrentCamera.CFrame) wait(1) vu:Button2Up(Vector2.new(0,0),workspace.CurrentCamera.CFrame) end) end) -- [ TOGGLE BUTTON ] -- ToggleBtn.Parent = ScreenGui ToggleBtn.Size = UDim2.new(0, 50, 0, 50) ToggleBtn.Position = UDim2.new(0, 10, 0.45, 0) ToggleBtn.BackgroundColor3 = Color3.fromRGB(0, 0, 0) ToggleBtn.BorderColor3 = Color3.fromRGB(255, 0, 0) ToggleBtn.Text = "C" ToggleBtn.TextColor3 = Color3.fromRGB(255, 0, 0) ToggleBtn.TextSize = 30 ToggleBtn.Visible = false -- [ BUTTON STYLE ] -- local function StyleBtn(btn, text, xPos) btn.Parent = MainFrame btn.BackgroundColor3 = Color3.fromRGB(0, 0, 0) btn.BorderColor3 = Color3.fromRGB(255, 0, 0) btn.Position = UDim2.new(xPos, 0, 0.8, 0) btn.Size = UDim2.new(0, 115, 0, 40) btn.Text = text btn.TextColor3 = Color3.fromRGB(255, 0, 0) end StyleBtn(ExecBtn, "Execute", 0.05) StyleBtn(SaveBtn, "Save script", 0.36) StyleBtn(ClearBtn, "Clear tab", 0.67) -- [ DRAG & ACTIONS ] -- local function Drag(ui) local dragging, start, pos ui.InputBegan:Connect(function(i) if i.UserInputType == Enum.UserInputType.MouseButton1 or i.UserInputType == Enum.UserInputType.Touch then dragging = true start = i.Position pos = ui.Position i.Changed:Connect(function() if i.UserInputState == Enum.UserInputState.End then dragging = false end end) end end) UIS.InputChanged:Connect(function(i) if dragging and (i.UserInputType == Enum.UserInputType.MouseMovement or i.UserInputType == Enum.UserInputType.Touch) then local delta = i.Position - start ui.Position = UDim2.new(pos.X.Scale, pos.X.Offset + delta.X, pos.Y.Scale, pos.Y.Offset + delta.Y) end end) end Drag(MainFrame) Drag(KeyFrame) Drag(ToggleBtn) SubmitBtn.MouseButton1Click:Connect(function() if KeyInput.Text == CorrectKey then KeyFrame.Visible = false MainFrame.Visible = true ToggleBtn.Visible = true if isfile and isfile("c00lkidd_save.txt") then ScriptBox.Text = readfile("c00lkidd_save.txt") end else KeyInput.Text = "WRONG" end end) ToggleBtn.MouseButton1Click:Connect(function() MainFrame.Visible = not MainFrame.Visible end) ExecBtn.MouseButton1Click:Connect(function() pcall(function() loadstring(ScriptBox.Text)() end) end) ClearBtn.MouseButton1Click:Connect(function() ScriptBox.Text = "" end) SaveBtn.MouseButton1Click:Connect(function() if writefile then writefile("c00lkidd_save.txt", ScriptBox.Text) end end)