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 InjectBtn = Instance.new("TextButton") local ToggleBtn = Instance.new("TextButton") local BypassFrame = Instance.new("Frame") -- [ CONFIG ] -- local CorrectKey = "project c00lkidd" local isInjected = false -- Status check ScreenGui.Name = "project_c00lkidd_stealth" ScreenGui.Parent = game:GetService("CoreGui") ScreenGui.ResetOnSpawn = false -- [ KEY SYSTEM ] -- KeyFrame.Name = "KeyFrame" KeyFrame.Parent = ScreenGui KeyFrame.BackgroundColor3 = Color3.fromRGB(5, 5, 5) KeyFrame.BorderColor3 = Color3.fromRGB(255, 0, 0) KeyFrame.BorderSizePixel = 2 KeyFrame.Position = UDim2.new(0.5, -160, 0.5, -90) KeyFrame.Size = UDim2.new(0, 320, 0, 180) local KeyTextLabel = Instance.new("TextLabel", KeyFrame) KeyTextLabel.Size = UDim2.new(1, 0, 0, 30) KeyTextLabel.BackgroundTransparency = 1 KeyTextLabel.Font = Enum.Font.SourceSansBold KeyTextLabel.Text = "PROJECT C00LKIDD KEY SYSTEM" KeyTextLabel.TextColor3 = Color3.fromRGB(255, 0, 0) KeyTextLabel.TextSize = 14 local KeyInput = Instance.new("TextBox", KeyFrame) KeyInput.Size = UDim2.new(0.8, 0, 0, 35) KeyInput.Position = UDim2.new(0.1, 0, 0.35, 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.8, 0, 0, 35) SubmitBtn.Position = UDim2.new(0.1, 0, 0.65, 0) SubmitBtn.BackgroundColor3 = Color3.fromRGB(35, 0, 0) SubmitBtn.BorderColor3 = Color3.fromRGB(255, 0, 0) SubmitBtn.Text = "VERIFY KEY" SubmitBtn.TextColor3 = Color3.fromRGB(255, 0, 0) -- [ MAIN 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, 340) MainFrame.Visible = false Title.Parent = MainFrame Title.BackgroundTransparency = 1 Title.Size = UDim2.new(1, 0, 0, 40) Title.Font = Enum.Font.SourceSansBold Title.Text = "project c00lkidd" Title.TextColor3 = Color3.fromRGB(255, 0, 0) Title.TextSize = 22 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.13, 0) ScriptBox.Size = UDim2.new(0.65, 0, 0.55, 0) ScriptBox.MultiLine = true ScriptBox.Text = "-- INJECT TO ENABLE" ScriptBox.TextColor3 = Color3.fromRGB(255, 255, 255) ScriptBox.Font = Enum.Font.Code -- [ BYPASS HUB ] -- 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.13, 0) BypassFrame.Size = UDim2.new(0.25, 0, 0.55, 0) local function AddBtn(name, yPos, callback) local btn = Instance.new("TextButton", BypassFrame) btn.Size = UDim2.new(0.9, 0, 0, 20) 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 = 9 btn.MouseButton1Click:Connect(function() if isInjected then callback() else warn("Not injected") end end) end AddBtn("INF YIELD", 5, function() loadstring(game:HttpGet('https://raw.githubusercontent.com/EdgeIY/infiniteyield/master/source'))() end) AddBtn("NOCLIP", 28, function() game:GetService("RunService").Stepped:Connect(function() for _, v in pairs(game.Players.LocalPlayer.Character:GetDescendants()) do if v:IsA("BasePart") then v.CanCollide = false end end end) end) AddBtn("FLY", 51, function() loadstring(game:HttpGet("https://raw.githubusercontent.com/XNEOFF/FlyGuiV3/main/FlyGuiV3.lua"))() end) AddBtn("SPEED 100", 74, function() game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 100 end) AddBtn("INF JUMP", 97, function() UIS.JumpRequest:Connect(function() game.Players.LocalPlayer.Character:FindFirstChildOfClass("Humanoid"):ChangeState("Jumping") end) end) AddBtn("JUMP 200", 120, function() game.Players.LocalPlayer.Character.Humanoid.JumpPower = 200 end) -- [ BUTTONS ] -- local function StyleBtn(btn, text, xPos, yPos) btn.Parent = MainFrame btn.BackgroundColor3 = Color3.fromRGB(0, 0, 0) btn.BorderColor3 = Color3.fromRGB(255, 0, 0) btn.Position = UDim2.new(xPos, 0, yPos, 0) btn.Size = UDim2.new(0, 180, 0, 35) btn.Text = text btn.TextColor3 = Color3.fromRGB(255, 0, 0) btn.Font = Enum.Font.SourceSansBold end StyleBtn(ExecBtn, "Execute", 0.05, 0.72) StyleBtn(SaveBtn, "Save script", 0.51, 0.72) StyleBtn(ClearBtn, "Clear tab", 0.05, 0.85) StyleBtn(InjectBtn, "Inject", 0.51, 0.85) -- [ TOGGLE ] -- 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 -- [ DRAG LOGIC ] -- 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) -- [ FUNCTIONALITY ] -- 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 SubmitBtn.Text = "WRONG KEY" wait(0.5) SubmitBtn.Text = "VERIFY KEY" end end) ToggleBtn.MouseButton1Click:Connect(function() MainFrame.Visible = not MainFrame.Visible end) ExecBtn.MouseButton1Click:Connect(function() if isInjected then pcall(function() loadstring(ScriptBox.Text)() end) else ExecBtn.Text = "INJECT FIRST" wait(1) ExecBtn.Text = "Execute" end end) ClearBtn.MouseButton1Click:Connect(function() ScriptBox.Text = "" end) SaveBtn.MouseButton1Click:Connect(function() if writefile then writefile("c00lkidd_save.txt", ScriptBox.Text) end end) InjectBtn.MouseButton1Click:Connect(function() isInjected = true InjectBtn.Text = "SUCCESS" ScriptBox.Text = "-- project c00lkidd: Ready to Execute" wait(1) InjectBtn.Text = "Inject" end)