--[[ Credits not needed u can remove :) Made by ownersalt2_theman ]] local cloneref = cloneref or function(o) return o end local ShowConsole = Instance.new("ScreenGui") local TextButton = Instance.new("TextButton") local UICorner = Instance.new("UICorner") local UIStroke = Instance.new("UIStroke") local coregui = cloneref(game:GetService("CoreGui")) ShowConsole.Name = "ShowConsole" ShowConsole.Parent = coregui ShowConsole.ZIndexBehavior = Enum.ZIndexBehavior.Sibling ShowConsole.ResetOnSpawn = false ShowConsole.IgnoreGuiInset = true TextButton.Parent = ShowConsole TextButton.BackgroundColor3 = Color3.fromRGB(0, 0, 0) TextButton.BorderColor3 = Color3.fromRGB(0, 0, 0) TextButton.BorderSizePixel = 0 TextButton.Position = UDim2.new(0.467948705, 0, 0.012820513, 0) TextButton.Size = UDim2.new(0, 50, 0, 50) TextButton.Font = Enum.Font.Roboto TextButton.Text = "Show Console" TextButton.TextColor3 = Color3.fromRGB(255, 255, 255) TextButton.TextScaled = true TextButton.TextSize = 14.000 TextButton.TextWrapped = true UICorner.CornerRadius = UDim.new(0, 12) UICorner.Parent = TextButton UIStroke.ApplyStrokeMode = Enum.ApplyStrokeMode.Border UIStroke.Color = Color3.fromRGB(255,255,255) UIStroke.LineJoinMode = Enum.LineJoinMode.Round UIStroke.Thickness = 2 UIStroke.Parent = TextButton local function scriptt() local script = Instance.new('LocalScript', TextButton) local activated = false script.Parent.MouseButton1Click:Connect(function() activated = not activated game:GetService("StarterGui"):SetCore("DevConsoleVisible", activated) end) end coroutine.wrap(scriptt)()