local gui = Instance.new("ScreenGui") gui.Name = "Sheldoni update" gui.Parent = game.CoreGui local Ui = Instance.new("Frame") Ui.Size = UDim2.new(0.0, 400, 0.0, 300) Ui.Position = UDim2.new(0.2, 89, 0.0, - 24) 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 ImageLabel = Instance.new("ImageLabel") ImageLabel.Size = UDim2.new(0.9, 37, 0.9, 28) ImageLabel.Position = UDim2.new(0.0, 0, 0.0, 0) ImageLabel.BackgroundColor3 = Color3.new(0, 0, 0) ImageLabel.ImageColor3 = Color3.new(1, 1, 1) ImageLabel.Image = "rbxassetid://14902240136" ImageLabel.ImageTransparency = 0.4 ImageLabel.Parent = Ui ImageLabel.BackgroundTransparency = 1 local She = Instance.new("TextButton") She.Size = UDim2.new(0.2, 19, 0.1, 0) She.Position = UDim2.new(0.0, 4, 0.0, 5) She.BackgroundColor3 = Color3.new(1, 1, 1) She.BorderColor3 = Color3.new(0, 0, 0) She.BorderSizePixel = 0 She.Text = "Sheldoni" She.BackgroundTransparency = 0.5 She.TextColor3 = Color3.new(0, 0, 0) She.Font = Enum.Font.Montserrat She.Parent = Ui She.TextSize = 19 local close = Instance.new("TextButton") close.Size = UDim2.new(0.2, 0, 0.1, 0) close.Position = UDim2.new(0.7, 32, 0.0, 5) close.BackgroundColor3 = Color3.new(1, 1, 1) close.BorderColor3 = Color3.new(0, 0, 0) close.BorderSizePixel = 0 close.Text = "Close" close.BackgroundTransparency = 0.5 close.TextColor3 = Color3.new(0, 0, 0) close.Font = Enum.Font.Montserrat close.Parent = Ui close.TextSize = 19 close.MouseButton1Click:Connect(function() Ui:Remove() end) local Ser = Instance.new("TextBox") Ser.Size = UDim2.new(0.3, 80, 0.1, 0) Ser.Position = UDim2.new(0.2, 28, 0.0, 5) Ser.BackgroundColor3 = Color3.new(1, 1, 1) Ser.BorderColor3 = Color3.new(0, 0, 0) Ser.BorderSizePixel = 0 Ser.Text = "" Ser.TextColor3 = Color3.new(0, 0, 0) Ser.BackgroundTransparency = 0.5 Ser.Font = Enum.Font.Montserrat Ser.PlaceholderText = "Search His Thoughts" Ser.PlaceholderColor3 = Color3.fromRGB(0, 0, 0) Ser.TextColor3 = Color3.new(0, 0, 0) Ser.TextSize = 19 Ser.Parent = Ui local TextBox = Instance.new("TextBox") TextBox.Size = UDim2.new(0.9, 29, 0.7, 6) TextBox.Position = UDim2.new(0.0, 4, 0.1, 9) TextBox.BackgroundColor3 = Color3.new(1, 1, 1) TextBox.BorderColor3 = Color3.new(0, 0, 0) TextBox.BorderSizePixel = 0 TextBox.Text = "" TextBox.PlaceholderText = "Execute His Thoughts" TextBox.PlaceholderColor3 = Color3.fromRGB(0, 0, 0) TextBox.TextColor3 = Color3.new(0, 0, 0) TextBox.BackgroundTransparency = 0.5 TextBox.Font = Enum.Font.Montserrat TextBox.TextSize = 17 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.4, 19, 0.1, 0) Exe.Position = UDim2.new(0.0, 4, 0.7, 50) Exe.BackgroundColor3 = Color3.new(1, 1, 1) Exe.BorderColor3 = Color3.new(0, 0, 0) Exe.BorderSizePixel = 0 Exe.Text = "Execute" Exe.BackgroundTransparency = 0.5 Exe.TextColor3 = Color3.new(0, 0, 0) Exe.Font = Enum.Font.Montserrat Exe.Parent = Ui Exe.TextSize = 19 Exe.MouseButton1Click:Connect(function() assert(loadstring(TextBox.Text))() end) local clea = Instance.new("TextButton") clea.Size = UDim2.new(0.4, 50, 0.1, 0) clea.Position = UDim2.new(0.4, 23, 0.7, 50) clea.BackgroundColor3 = Color3.new(1, 1, 1) clea.BorderColor3 = Color3.new(0, 0, 0) clea.BorderSizePixel = 0 clea.Text = "Clear" clea.BackgroundTransparency = 0.5 clea.TextColor3 = Color3.new(0, 0, 0) clea.Font = Enum.Font.Montserrat clea.Parent = Ui clea.TextSize = 19 clea.MouseButton1Click:Connect(function() TextBox.Text = "" end)