vesq_

Untitled

Apr 1st, 2019
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.68 KB | None | 0 0
  1. -- Objects
  2.  
  3. local ScreenGui = Instance.new("ScreenGui")
  4. local Sentinel = Instance.new("Frame")
  5. local Execute = Instance.new("TextButton")
  6. local Clear = Instance.new("TextButton")
  7. local Frame = Instance.new("Frame")
  8. local TextLabel = Instance.new("TextLabel")
  9. local ScrollingFrame = Instance.new("ScrollingFrame")
  10. local Input = Instance.new("TextBox")
  11. local TextLabel_2 = Instance.new("TextLabel")
  12.  
  13. -- Properties
  14.  
  15. ScreenGui.Parent = game.CoreGui
  16. ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  17.  
  18. Sentinel.Name = "Sentinel"
  19. Sentinel.Parent = ScreenGui
  20. Sentinel.Active = true
  21. Sentinel.BackgroundColor3 = Color3.new(0.0392157, 0.0392157, 0.0392157)
  22. Sentinel.BorderColor3 = Color3.new(0.0392157, 0.0392157, 0.0392157)
  23. Sentinel.Position = UDim2.new(0.369524986, 0, 0.120393127, 0)
  24. Sentinel.Size = UDim2.new(0, 524, 0, 262)
  25. Sentinel.Draggable = true
  26.  
  27. Execute.Name = "Execute"
  28. Execute.Parent = Sentinel
  29. Execute.BackgroundColor3 = Color3.new(0.878431, 0.0666667, 0.372549)
  30. Execute.BorderColor3 = Color3.new(0.0392157, 0.0392157, 0.0392157)
  31. Execute.Position = UDim2.new(0.0152671738, 0, 0.893129826, 0)
  32. Execute.Size = UDim2.new(0, 66, 0, 20)
  33. Execute.Font = Enum.Font.SourceSans
  34. Execute.Text = "Execute"
  35. Execute.TextColor3 = Color3.new(1, 1, 1)
  36. Execute.TextSize = 14
  37. Execute.MouseButton1Down:connect(function()
  38. loadstring(Input.Text)()
  39. end)
  40.  
  41. Clear.Name = "Clear"
  42. Clear.Parent = Sentinel
  43. Clear.BackgroundColor3 = Color3.new(0.878431, 0.0666667, 0.372549)
  44. Clear.BorderColor3 = Color3.new(0.0392157, 0.0392157, 0.0392157)
  45. Clear.Position = UDim2.new(0.158396944, 0, 0.893129766, 0)
  46. Clear.Size = UDim2.new(0, 66, 0, 20)
  47. Clear.Font = Enum.Font.SourceSans
  48. Clear.Text = "Clear"
  49. Clear.TextColor3 = Color3.new(1, 1, 1)
  50. Clear.TextSize = 14
  51. Clear.MouseButton1Down:connect(function()
  52. Input.Text = ""
  53. end)
  54.  
  55. Frame.Parent = Sentinel
  56. Frame.Active = true
  57. Frame.BackgroundColor3 = Color3.new(0.878431, 0.0666667, 0.372549)
  58. Frame.BorderColor3 = Color3.new(0.878431, 0.0666667, 0.372549)
  59. Frame.Size = UDim2.new(0, 524, 0, 16)
  60.  
  61. TextLabel.Parent = Sentinel
  62. TextLabel.BackgroundColor3 = Color3.new(0.878431, 0.0666667, 0.372549)
  63. TextLabel.BorderColor3 = Color3.new(0.878431, 0.0666667, 0.372549)
  64. TextLabel.Position = UDim2.new(-4.19095159e-08, 0, 0.00381679833, 0)
  65. TextLabel.Size = UDim2.new(0, 50, 0, 15)
  66. TextLabel.Font = Enum.Font.SourceSans
  67. TextLabel.Text = "Sentinel"
  68. TextLabel.TextColor3 = Color3.new(1, 1, 1)
  69. TextLabel.TextSize = 14
  70.  
  71. ScrollingFrame.Parent = Sentinel
  72. ScrollingFrame.BackgroundColor3 = Color3.new(0.0392157, 0.0392157, 0.0392157)
  73. ScrollingFrame.BackgroundTransparency = 1
  74. ScrollingFrame.BorderColor3 = Color3.new(0.0392157, 0.0392157, 0.0392157)
  75. ScrollingFrame.Position = UDim2.new(0.0152671756, 0, 0.0839694664, 0)
  76. ScrollingFrame.Size = UDim2.new(0, 508, 0, 205)
  77. ScrollingFrame.CanvasSize = UDim2.new(0, 0, 999, 0)
  78.  
  79. Input.Name = "Input"
  80. Input.Parent = ScrollingFrame
  81. Input.BackgroundColor3 = Color3.new(0.0588235, 0.0588235, 0.0588235)
  82. Input.BorderColor3 = Color3.new(0.0588235, 0.0588235, 0.0588235)
  83. Input.Size = UDim2.new(0, 508, 0, 999)
  84. Input.ClearTextOnFocus = false
  85. Input.Font = Enum.Font.SourceSans
  86. Input.MultiLine = true
  87. Input.Text = ""
  88. Input.TextColor3 = Color3.new(255, 255, 255)
  89. Input.TextSize = 14
  90. Input.TextXAlignment = Enum.TextXAlignment.Left
  91. Input.TextYAlignment = Enum.TextYAlignment.Top
  92.  
  93. TextLabel_2.Parent = ScreenGui
  94. TextLabel_2.BackgroundColor3 = Color3.new(1, 1, 1)
  95. TextLabel_2.BackgroundTransparency = 1
  96. TextLabel_2.Position = UDim2.new(0, 0, 0.93857491, 0)
  97. TextLabel_2.Size = UDim2.new(0, 200, 0, 50)
  98. TextLabel_2.Font = Enum.Font.GothamBold
  99. TextLabel_2.Text = "Sentinel Cracked By Vesq"
  100. TextLabel_2.TextColor3 = Color3.new(1, 1, 1)
  101. TextLabel_2.TextSize = 14
Add Comment
Please, Sign In to add comment