Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- Objects
- local ScreenGui = Instance.new("ScreenGui")
- local Sentinel = Instance.new("Frame")
- local Execute = Instance.new("TextButton")
- local Clear = Instance.new("TextButton")
- local Frame = Instance.new("Frame")
- local TextLabel = Instance.new("TextLabel")
- local ScrollingFrame = Instance.new("ScrollingFrame")
- local Input = Instance.new("TextBox")
- local TextLabel_2 = Instance.new("TextLabel")
- -- Properties
- ScreenGui.Parent = game.CoreGui
- ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
- Sentinel.Name = "Sentinel"
- Sentinel.Parent = ScreenGui
- Sentinel.Active = true
- Sentinel.BackgroundColor3 = Color3.new(0.0392157, 0.0392157, 0.0392157)
- Sentinel.BorderColor3 = Color3.new(0.0392157, 0.0392157, 0.0392157)
- Sentinel.Position = UDim2.new(0.369524986, 0, 0.120393127, 0)
- Sentinel.Size = UDim2.new(0, 524, 0, 262)
- Sentinel.Draggable = true
- Execute.Name = "Execute"
- Execute.Parent = Sentinel
- Execute.BackgroundColor3 = Color3.new(0.878431, 0.0666667, 0.372549)
- Execute.BorderColor3 = Color3.new(0.0392157, 0.0392157, 0.0392157)
- Execute.Position = UDim2.new(0.0152671738, 0, 0.893129826, 0)
- Execute.Size = UDim2.new(0, 66, 0, 20)
- Execute.Font = Enum.Font.SourceSans
- Execute.Text = "Execute"
- Execute.TextColor3 = Color3.new(1, 1, 1)
- Execute.TextSize = 14
- Execute.MouseButton1Down:connect(function()
- loadstring(Input.Text)()
- end)
- Clear.Name = "Clear"
- Clear.Parent = Sentinel
- Clear.BackgroundColor3 = Color3.new(0.878431, 0.0666667, 0.372549)
- Clear.BorderColor3 = Color3.new(0.0392157, 0.0392157, 0.0392157)
- Clear.Position = UDim2.new(0.158396944, 0, 0.893129766, 0)
- Clear.Size = UDim2.new(0, 66, 0, 20)
- Clear.Font = Enum.Font.SourceSans
- Clear.Text = "Clear"
- Clear.TextColor3 = Color3.new(1, 1, 1)
- Clear.TextSize = 14
- Clear.MouseButton1Down:connect(function()
- Input.Text = ""
- end)
- Frame.Parent = Sentinel
- Frame.Active = true
- Frame.BackgroundColor3 = Color3.new(0.878431, 0.0666667, 0.372549)
- Frame.BorderColor3 = Color3.new(0.878431, 0.0666667, 0.372549)
- Frame.Size = UDim2.new(0, 524, 0, 16)
- TextLabel.Parent = Sentinel
- TextLabel.BackgroundColor3 = Color3.new(0.878431, 0.0666667, 0.372549)
- TextLabel.BorderColor3 = Color3.new(0.878431, 0.0666667, 0.372549)
- TextLabel.Position = UDim2.new(-4.19095159e-08, 0, 0.00381679833, 0)
- TextLabel.Size = UDim2.new(0, 50, 0, 15)
- TextLabel.Font = Enum.Font.SourceSans
- TextLabel.Text = "Sentinel"
- TextLabel.TextColor3 = Color3.new(1, 1, 1)
- TextLabel.TextSize = 14
- ScrollingFrame.Parent = Sentinel
- ScrollingFrame.BackgroundColor3 = Color3.new(0.0392157, 0.0392157, 0.0392157)
- ScrollingFrame.BackgroundTransparency = 1
- ScrollingFrame.BorderColor3 = Color3.new(0.0392157, 0.0392157, 0.0392157)
- ScrollingFrame.Position = UDim2.new(0.0152671756, 0, 0.0839694664, 0)
- ScrollingFrame.Size = UDim2.new(0, 508, 0, 205)
- ScrollingFrame.CanvasSize = UDim2.new(0, 0, 999, 0)
- Input.Name = "Input"
- Input.Parent = ScrollingFrame
- Input.BackgroundColor3 = Color3.new(0.0588235, 0.0588235, 0.0588235)
- Input.BorderColor3 = Color3.new(0.0588235, 0.0588235, 0.0588235)
- Input.Size = UDim2.new(0, 508, 0, 999)
- Input.ClearTextOnFocus = false
- Input.Font = Enum.Font.SourceSans
- Input.MultiLine = true
- Input.Text = ""
- Input.TextColor3 = Color3.new(255, 255, 255)
- Input.TextSize = 14
- Input.TextXAlignment = Enum.TextXAlignment.Left
- Input.TextYAlignment = Enum.TextYAlignment.Top
- TextLabel_2.Parent = ScreenGui
- TextLabel_2.BackgroundColor3 = Color3.new(1, 1, 1)
- TextLabel_2.BackgroundTransparency = 1
- TextLabel_2.Position = UDim2.new(0, 0, 0.93857491, 0)
- TextLabel_2.Size = UDim2.new(0, 200, 0, 50)
- TextLabel_2.Font = Enum.Font.GothamBold
- TextLabel_2.Text = "Sentinel Cracked By Vesq"
- TextLabel_2.TextColor3 = Color3.new(1, 1, 1)
- TextLabel_2.TextSize = 14
Add Comment
Please, Sign In to add comment