local gui = Instance.new("ScreenGui") gui.Name = "deez" gui.Parent = game.CoreGui local Ui = Instance.new("Frame") Ui.Size = UDim2.new(0.6, 20, 0.9, 20) Ui.Position = UDim2.new(0.0, 0, 0.0, 0) Ui.BackgroundColor3 = Color3.new(1, 1, 1) Ui.BorderColor3 = Color3.new(0, 0, 0) Ui.BorderSizePixel = 0 Ui.Active = true Ui.BackgroundTransparency = 1 Ui.Draggable = true Ui.Parent = gui local ui = Instance.new("ImageLabel") ui.Size = UDim2.new(0.9, 45, 0.9, 29) ui.Position = UDim2.new(0.0, 0, 0.0, 0) ui.BackgroundColor3 = Color3.new(0, 0, 0) ui.ImageColor3 = Color3.new(1, 1, 1) ui.Image = "rbxassetid://81903564318854" ui.ImageTransparency = 0 ui.Parent = Ui ui.BackgroundTransparency = 1 local TextBox = Instance.new("TextBox") TextBox.Size = UDim2.new(0.7, 30, 0.7, 20) TextBox.Position = UDim2.new(0.0, 8, 0.1, 0) TextBox.BackgroundColor3 = Color3.new(1, 1, 1) TextBox.BorderColor3 = Color3.new(0, 0, 0) TextBox.BorderSizePixel = 0 TextBox.Text = "print('Deez Serverside')" TextBox.TextColor3 = Color3.new(0, 0, 0) TextBox.BackgroundTransparency = 0 TextBox.Font = Enum.Font.Code TextBox.TextSize = 15 TextBox.Parent = ui TextBox.TextYAlignment = Enum.TextYAlignment.Top TextBox.TextXAlignment = Enum.TextXAlignment.Left TextBox.ClearTextOnFocus = failed TextBox.MultiLine = true TextBox.TextWrapped = true local exe = Instance.new("TextButton") exe.Size = UDim2.new(0.1, 23, 0.1, 17) exe.Position = UDim2.new(0.8, 13, 0.1, 0) exe.BackgroundColor3 = Color3.new(0, 0, 0) exe.BorderColor3 = Color3.new(0, 0, 0) exe.BorderSizePixel = 0 exe.Text = "" exe.BackgroundTransparency = 1 exe.TextColor3 = Color3.new(255, 255, 255) exe.Font = Enum.Font.Code exe.Parent = ui exe.MouseButton1Click:Connect(function() assert(loadstring(TextBox.Text))() end) local clea = Instance.new("TextButton") clea.Size = UDim2.new(0.1, 23, 0.1, 17) clea.Position = UDim2.new(0.8, 14, 0.2, 23) clea.BackgroundColor3 = Color3.new(0, 0, 0) clea.BorderColor3 = Color3.new(0, 0, 0) clea.BorderSizePixel = 0 clea.Text = "" clea.BackgroundTransparency = 1 clea.TextColor3 = Color3.new(255, 255, 255) clea.Font = Enum.Font.Code clea.Parent = ui clea.MouseButton1Click:Connect(function() TextBox.Text = "" end) local X = Instance.new("TextButton") X.Size = UDim2.new(0.0, 19, 0.0, 19) X.Position = UDim2.new(0.9, 24, 0.0, 0) X.BackgroundColor3 = Color3.new(0, 0, 0) X.BorderColor3 = Color3.new(0, 0, 0) X.BorderSizePixel = 0 X.Text = "" X.BackgroundTransparency = 1 X.TextColor3 = Color3.new(255, 255, 255) X.Font = Enum.Font.Code X.Parent = ui X.MouseButton1Click:Connect(function() Ui:Remove() end)