Advertisement
Guest User

Untitled

a guest
Sep 30th, 2017
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 7.96 KB | None | 0 0
  1. -- Objects
  2.  
  3. local OverEnd = Instance.new("ScreenGui")
  4. local LoginFrame = Instance.new("Frame")
  5. local bar = Instance.new("Frame")
  6. local user = Instance.new("TextBox")
  7. local loginlabel = Instance.new("TextLabel")
  8. local pass = Instance.new("TextBox")
  9. local login = Instance.new("TextButton")
  10. local MainFrame = Instance.new("Frame")
  11. local bar2 = Instance.new("Frame")
  12. local title = Instance.new("TextLabel")
  13. local credit = Instance.new("TextLabel")
  14. local scriptbut = Instance.new("TextButton")
  15. local bar3 = Instance.new("Frame")
  16. local exitok = Instance.new("TextButton")
  17. local exebut = Instance.new("TextButton")
  18. local ExeFrame = Instance.new("Frame")
  19. local bar4 = Instance.new("Frame")
  20. local ScrollingFrame = Instance.new("ScrollingFrame")
  21. local input = Instance.new("TextBox")
  22. local Execute = Instance.new("TextButton")
  23. local Clear = Instance.new("TextButton")
  24.  
  25. -- Properties
  26.  
  27. OverEnd.Name = "OverEnd"
  28. OverEnd.Parent = game.CoreGui
  29.  
  30. LoginFrame.Name = "LoginFrame"
  31. LoginFrame.Parent = OverEnd
  32. LoginFrame.BackgroundColor3 = Color3.new(0, 0.666667, 1)
  33. LoginFrame.Position = UDim2.new(0, 535, 0, 272)
  34. LoginFrame.Size = UDim2.new(0, 222, 0, 207)
  35.  
  36. bar.Name = "bar"
  37. bar.Parent = LoginFrame
  38. bar.BackgroundColor3 = Color3.new(1, 1, 1)
  39. bar.Size = UDim2.new(0, 222, 0, 17)
  40.  
  41. user.Name = "user"
  42. user.Parent = LoginFrame
  43. user.BackgroundColor3 = Color3.new(1, 1, 1)
  44. user.Position = UDim2.new(0, 11, 0, 52)
  45. user.Size = UDim2.new(0, 200, 0, 27)
  46. user.Font = Enum.Font.SourceSansBold
  47. user.FontSize = Enum.FontSize.Size14
  48. user.Text = "Username"
  49. user.TextColor3 = Color3.new(0, 1, 1)
  50. user.TextScaled = true
  51. user.TextSize = 14
  52. user.TextWrapped = true
  53.  
  54. loginlabel.Name = "loginlabel"
  55. loginlabel.Parent = LoginFrame
  56. loginlabel.BackgroundColor3 = Color3.new(1, 1, 1)
  57. loginlabel.BackgroundTransparency = 1
  58. loginlabel.Position = UDim2.new(0, 47, 0, 0)
  59. loginlabel.Size = UDim2.new(0, 128, 0, 14)
  60. loginlabel.Font = Enum.Font.SourceSansBold
  61. loginlabel.FontSize = Enum.FontSize.Size24
  62. loginlabel.Text = "Please, login"
  63. loginlabel.TextColor3 = Color3.new(0.333333, 1, 1)
  64. loginlabel.TextSize = 20
  65. loginlabel.TextWrapped = true
  66.  
  67. pass.Name = "pass"
  68. pass.Parent = LoginFrame
  69. pass.BackgroundColor3 = Color3.new(1, 1, 1)
  70. pass.Position = UDim2.new(0, 11, 0, 97)
  71. pass.Size = UDim2.new(0, 200, 0, 23)
  72. pass.Font = Enum.Font.SourceSansBold
  73. pass.FontSize = Enum.FontSize.Size14
  74. pass.Text = "Password"
  75. pass.TextColor3 = Color3.new(0, 1, 1)
  76. pass.TextScaled = true
  77. pass.TextSize = 14
  78. pass.TextWrapped = true
  79.  
  80. login.Name = "login"
  81. login.Parent = LoginFrame
  82. login.BackgroundColor3 = Color3.new(1, 1, 1)
  83. login.Position = UDim2.new(0, 66, 0, 145)
  84. login.Size = UDim2.new(0, 89, 0, 23)
  85. login.Font = Enum.Font.SourceSansBold
  86. login.FontSize = Enum.FontSize.Size14
  87. login.Text = "Submit"
  88. login.TextColor3 = Color3.new(0, 1, 1)
  89. login.TextScaled = true
  90. login.TextSize = 14
  91. login.TextWrapped = true
  92. login.MouseButton1Down:connect(function()
  93. if user.Text -- "Sh4w" and pass.Text -- "password" then
  94. Login.Frame.Visible = false
  95. MainFrame.Visible = true
  96.  
  97. end
  98. end)
  99. MainFrame.Name = "MainFrame"
  100. MainFrame.Parent = OverEnd
  101. MainFrame.Active = true
  102. MainFrame.BackgroundColor3 = Color3.new(0, 0.666667, 1)
  103. MainFrame.Draggable = true
  104. MainFrame.Position = UDim2.new(0, 221, 0, 351)
  105. MainFrame.Size = UDim2.new(0, 282, 0, 124)
  106. MainFrame.Visible = false
  107.  
  108. bar2.Name = "bar2"
  109. bar2.Parent = MainFrame
  110. bar2.Active = true
  111. bar2.BackgroundColor3 = Color3.new(1, 1, 1)
  112. bar2.Size = UDim2.new(0, 282, 0, 19)
  113.  
  114. title.Name = "title"
  115. title.Parent = MainFrame
  116. title.BackgroundColor3 = Color3.new(1, 1, 1)
  117. title.BackgroundTransparency = 1
  118. title.Position = UDim2.new(0, 41, 0, 23)
  119. title.Size = UDim2.new(0, 200, 0, 50)
  120. title.Font = Enum.Font.SourceSansBold
  121. title.FontSize = Enum.FontSize.Size14
  122. title.Text = "OverEnd - Void SB Executor"
  123. title.TextColor3 = Color3.new(0, 1, 1)
  124. title.TextScaled = true
  125. title.TextSize = 14
  126. title.TextWrapped = true
  127.  
  128. credit.Name = "credit"
  129. credit.Parent = MainFrame
  130. credit.BackgroundColor3 = Color3.new(1, 1, 1)
  131. credit.BorderSizePixel = 0
  132. credit.Position = UDim2.new(0, 41, 0, 0)
  133. credit.Size = UDim2.new(0, 200, 0, 11)
  134. credit.Font = Enum.Font.SourceSansBold
  135. credit.FontSize = Enum.FontSize.Size14
  136. credit.Text = "Made by: Sh4w - v0.10"
  137. credit.TextColor3 = Color3.new(0, 1, 1)
  138. credit.TextScaled = true
  139. credit.TextSize = 14
  140. credit.TextWrapped = true
  141.  
  142. scriptbut.Name = "scriptbut"
  143. scriptbut.Parent = MainFrame
  144. scriptbut.BackgroundColor3 = Color3.new(1, 1, 1)
  145. scriptbut.Position = UDim2.new(0, 0, 0, 97)
  146. scriptbut.Size = UDim2.new(0, 67, 0, 17)
  147. scriptbut.Font = Enum.Font.SourceSansBold
  148. scriptbut.FontSize = Enum.FontSize.Size14
  149. scriptbut.Text = "Scripts"
  150. scriptbut.TextColor3 = Color3.new(0, 1, 1)
  151. scriptbut.TextScaled = true
  152. scriptbut.TextSize = 14
  153. scriptbut.TextWrapped = true
  154.  
  155. bar3.Name = "bar3"
  156. bar3.Parent = MainFrame
  157. bar3.BackgroundColor3 = Color3.new(1, 1, 1)
  158. bar3.BackgroundTransparency = 0.69999998807907
  159. bar3.BorderSizePixel = 0
  160. bar3.Position = UDim2.new(0, 0, 0, 67)
  161. bar3.Size = UDim2.new(0, 73, 0, 53)
  162.  
  163. exitok.Name = "exitok"
  164. exitok.Parent = MainFrame
  165. exitok.BackgroundColor3 = Color3.new(1, 1, 1)
  166. exitok.Position = UDim2.new(0, 236, 0, 32)
  167. exitok.Size = UDim2.new(0, 30, 0, 17)
  168. exitok.Font = Enum.Font.SourceSansBold
  169. exitok.FontSize = Enum.FontSize.Size14
  170. exitok.Text = "Exit"
  171. exitok.TextColor3 = Color3.new(0, 1, 1)
  172. exitok.TextScaled = true
  173. exitok.TextSize = 14
  174. exitok.TextWrapped = true
  175.  
  176. exebut.Name = "exebut"
  177. exebut.Parent = MainFrame
  178. exebut.BackgroundColor3 = Color3.new(1, 1, 1)
  179. exebut.Position = UDim2.new(0, 0, 0, 71)
  180. exebut.Size = UDim2.new(0, 67, 0, 17)
  181. exebut.Font = Enum.Font.SourceSansBold
  182. exebut.FontSize = Enum.FontSize.Size14
  183. exebut.Text = "Execution"
  184. exebut.TextColor3 = Color3.new(0, 1, 1)
  185. exebut.TextScaled = true
  186. exebut.TextSize = 14
  187. exebut.TextWrapped = true
  188. exebut.MouseButton.1Down:connect(function()
  189.  
  190. MainFrame.Visible = false
  191. ExeFrame.Visible = true
  192. end)
  193. ExeFrame.Name = "ExeFrame"
  194. ExeFrame.Parent = OverEnd
  195. ExeFrame.BackgroundColor3 = Color3.new(0, 0.666667, 1)
  196. ExeFrame.Draggable = true
  197. ExeFrame.Position = UDim2.new(0, 328, 0, 23)
  198. ExeFrame.Size = UDim2.new(0, 343, 0, 230)
  199. ExeFrame.Visible = false
  200.  
  201. bar4.Name = "bar4"
  202. bar4.Parent = ExeFrame
  203. bar4.BackgroundColor3 = Color3.new(1, 1, 1)
  204. bar4.Size = UDim2.new(0, 343, 0, 19)
  205.  
  206. ScrollingFrame.Parent = ExeFrame
  207. ScrollingFrame.BackgroundColor3 = Color3.new(0.745098, 0.745098, 0.745098)
  208. ScrollingFrame.BackgroundTransparency = 0.0099999997764826
  209. ScrollingFrame.Position = UDim2.new(0, 17, 0, 44)
  210. ScrollingFrame.Size = UDim2.new(0, 308, 0, 141)
  211. ScrollingFrame.CanvasSize = UDim2.new(0, 0, 1000000, 0)
  212. ScrollingFrame.ScrollBarThickness = 10
  213.  
  214. input.Name = "input"
  215. input.Parent = ScrollingFrame
  216. input.BackgroundColor3 = Color3.new(1, 1, 1)
  217. input.BackgroundTransparency = 1
  218. input.Position = UDim2.new(0, -182, 0, -53)
  219. input.Size = UDim2.new(0, 412, 0, 124)
  220. input.Font = Enum.Font.SourceSans
  221. input.FontSize = Enum.FontSize.Size24
  222. input.Text = "print(\"Script Here\");"
  223. input.TextSize = 20
  224.  
  225. Execute.Name = "Execute"
  226. Execute.Parent = ExeFrame
  227. Execute.BackgroundColor3 = Color3.new(1, 1, 1)
  228. Execute.Position = UDim2.new(0, 19, 0, 190)
  229. Execute.Size = UDim2.new(0, 67, 0, 23)
  230. Execute.Font = Enum.Font.SourceSansBold
  231. Execute.FontSize = Enum.FontSize.Size14
  232. Execute.Text = "Execute"
  233. Execute.TextColor3 = Color3.new(0, 1, 1)
  234. Execute.TextScaled = true
  235. Execute.TextSize = 14
  236. Execute.TextWrapped = true
  237. execute.MouseButton.1Down:connect(function()
  238. if input.Text -- "ExitFrame();" then
  239. MainFrame.Visible = true
  240. ExeFrame.Visible = false
  241. print("Frame Exited");
  242. else
  243. loadstring(input.Text)()
  244. end
  245. end)
  246.  
  247.  
  248. Clear.Name = "clear"
  249. Clear.Parent = ExeFrame
  250. Clear.BackgroundColor3 = Color3.new(1, 1, 1)
  251. Clear.Position = UDim2.new(0, 105, 0, 190)
  252. Clear.Size = UDim2.new(0, 67, 0, 23)
  253. Clear.Font = Enum.Font.SourceSansBold
  254. Clear.FontSize = Enum.FontSize.Size14
  255. Clear.Text = "Clear"
  256. Clear.TextColor3 = Color3.new(0, 1, 1)
  257. Clear.TextScaled = true
  258. Clear.TextSize = 14
  259. Clear.TextWrapped = true
  260. input.Text = ""
  261. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement