Advertisement
Guest User

Untitled

a guest
Jul 8th, 2017
125
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 8.50 KB | None | 0 0
  1. -- Objects
  2.  
  3. local ScreenGui = Instance.new("ScreenGui")
  4. local Mainframe = Instance.new("Frame")
  5. local title = Instance.new("TextLabel")
  6. local bar2 = Instance.new("Frame")
  7. local exebut = Instance.new("TextButton")
  8. local scriptbut = Instance.new("TextButton")
  9. local exitbut = Instance.new("TextButton")
  10. local credits = Instance.new("TextLabel")
  11. local LoginFrame = Instance.new("Frame")
  12. local bar1 = Instance.new("Frame")
  13. local Loginlabel = Instance.new("TextLabel")
  14. local user = Instance.new("TextBox")
  15. local pass = Instance.new("TextBox")
  16. local login = Instance.new("TextButton")
  17. local ExeFrame = Instance.new("Frame")
  18. local Frame = Instance.new("Frame")
  19. local ScrollingFrame = Instance.new("ScrollingFrame")
  20. local TextBox = Instance.new("TextBox")
  21. local execute = Instance.new("TextButton")
  22. local clear = Instance.new("TextButton")
  23.  
  24. -- Properties
  25.  
  26. ScreenGui.Parent = game.CoreGui
  27.  
  28. Mainframe.Name = "Main frame"
  29. Mainframe.Parent = ScreenGui
  30. Mainframe.Active = true
  31. Mainframe.BackgroundColor3 = Color3.new(0, 0, 0)
  32. Mainframe.BorderColor3 = Color3.new(0.988235, 0.219608, 0.219608)
  33. Mainframe.Draggable = true
  34. Mainframe.Position = UDim2.new(0.118698284, -69, 0.682347476, -48)
  35. Mainframe.Size = UDim2.new(0.334928244, -20, 0.241329476, 100)
  36. Mainframe.Visible = false
  37.  
  38. title.Name = "title"
  39. title.Parent = Mainframe
  40. title.BackgroundColor3 = Color3.new(0, 0, 0)
  41. title.BorderColor3 = Color3.new(1, 0, 0)
  42. title.Position = UDim2.new(0, 0, 0.0599250942, -5)
  43. title.Size = UDim2.new(0.354838699, 261, -0.00749063678, 50)
  44. title.Font = Enum.Font.SourceSans
  45. title.FontSize = Enum.FontSize.Size28
  46. title.Text = "ExDevil"
  47. title.TextColor3 = Color3.new(1, 0, 0)
  48. title.TextSize = 25
  49.  
  50. bar2.Name = "bar2"
  51. bar2.Parent = Mainframe
  52. bar2.BackgroundColor3 = Color3.new(0.741176, 0, 0)
  53. bar2.Size = UDim2.new(0.677419364, 130, -0.314606756, 118)
  54.  
  55. exebut.Name = "exebut"
  56. exebut.Parent = Mainframe
  57. exebut.BackgroundColor3 = Color3.new(0, 0, 0)
  58. exebut.BorderColor3 = Color3.new(1, 0, 0)
  59. exebut.BorderSizePixel = 4
  60. exebut.Position = UDim2.new(0.0198019799, 0, 0.533742309, 0)
  61. exebut.Size = UDim2.new(-0.0594059415, 200, 0.0429447852, 50)
  62. exebut.Font = Enum.Font.SourceSans
  63. exebut.FontSize = Enum.FontSize.Size24
  64. exebut.Text = "Execution"
  65. exebut.TextColor3 = Color3.new(1, 0, 0)
  66. exebut.TextSize = 20
  67. exebut.MouseButton1Down:Connect(function()
  68. Mainframe.Visible = false
  69. ExeFrame.Visible = true
  70.  
  71. end
  72. end)
  73. scriptbut.Name = "scriptbut"
  74. scriptbut.Parent = Mainframe
  75. scriptbut.BackgroundColor3 = Color3.new(0, 0, 0)
  76. scriptbut.BorderColor3 = Color3.new(1, 0, 0)
  77. scriptbut.BorderSizePixel = 4
  78. scriptbut.Position = UDim2.new(0.5272277, 0, 0.533742309, 0)
  79. scriptbut.Size = UDim2.new(-0.0396039598, 200, 0.0429447852, 50)
  80. scriptbut.Font = Enum.Font.SourceSans
  81. scriptbut.FontSize = Enum.FontSize.Size24
  82. scriptbut.Text = "Scripts"
  83. scriptbut.TextColor3 = Color3.new(1, 0, 0)
  84. scriptbut.TextSize = 20
  85.  
  86. exitbut.Name = "exitbut"
  87. exitbut.Parent = Mainframe
  88. exitbut.BackgroundColor3 = Color3.new(0, 0, 0)
  89. exitbut.BorderColor3 = Color3.new(1, 0, 0)
  90. exitbut.BorderSizePixel = 4
  91. exitbut.Position = UDim2.new(0.809405923, 0, 0.874233127, 0)
  92. exitbut.Size = UDim2.new(-0.321782172, 200, -0.0429447852, 50)
  93. exitbut.Font = Enum.Font.SourceSans
  94. exitbut.FontSize = Enum.FontSize.Size24
  95. exitbut.Text = "Exit"
  96. exitbut.TextColor3 = Color3.new(1, 0, 0)
  97. exitbut.TextSize = 20
  98.  
  99. credits.Name = "credits"
  100. credits.Parent = Mainframe
  101. credits.BackgroundColor3 = Color3.new(0, 0, 0)
  102. credits.BorderColor3 = Color3.new(0, 0, 0)
  103. credits.BorderSizePixel = 0
  104. credits.Position = UDim2.new(0.0148514854, 0, 0, 301)
  105. credits.Size = UDim2.new(0, 111, 0, 20)
  106. credits.ZIndex = 2
  107. credits.Font = Enum.Font.SourceSans
  108. credits.FontSize = Enum.FontSize.Size14
  109. credits.Text = "Made by Amit Baruch"
  110. credits.TextColor3 = Color3.new(1, 0, 0)
  111. credits.TextSize = 14
  112.  
  113. LoginFrame.Name = "Login Frame"
  114. LoginFrame.Parent = ScreenGui
  115. LoginFrame.Active = true
  116. LoginFrame.BackgroundColor3 = Color3.new(0.0117647, 0.0117647, 0.0117647)
  117. LoginFrame.Draggable = true
  118. LoginFrame.Position = UDim2.new(-0.00178309716, 64, 0.351531982, -161)
  119. LoginFrame.Size = UDim2.new(0.177033499, 19, 0.260115594, 100)
  120. LoginFrame.ZIndex = 2
  121.  
  122. bar1.Name = "bar1"
  123. bar1.Parent = LoginFrame
  124. bar1.BackgroundColor3 = Color3.new(0.741176, 0, 0)
  125. bar1.Size = UDim2.new(0.526066363, 115, -0.303571433, 123)
  126. bar1.ZIndex = 2
  127.  
  128. Loginlabel.Name = "Loginlabel"
  129. Loginlabel.Parent = LoginFrame
  130. Loginlabel.BackgroundColor3 = Color3.new(0, 0, 0)
  131. Loginlabel.BorderSizePixel = 0
  132. Loginlabel.Position = UDim2.new(0.026748972, 8, 0.151328906, 6)
  133. Loginlabel.Size = UDim2.new(0.0521326996, 200, -0.0178571437, 50)
  134. Loginlabel.ZIndex = 3
  135. Loginlabel.Font = Enum.Font.SourceSans
  136. Loginlabel.FontSize = Enum.FontSize.Size32
  137. Loginlabel.Text = "Please Login"
  138. Loginlabel.TextColor3 = Color3.new(1, 0.0313726, 0)
  139. Loginlabel.TextSize = 30
  140.  
  141. user.Name = "user"
  142. user.Parent = LoginFrame
  143. user.BackgroundColor3 = Color3.new(0, 0, 0)
  144. user.BorderColor3 = Color3.new(0.207843, 0.0352941, 0.0313726)
  145. user.BorderSizePixel = 4
  146. user.Position = UDim2.new(0.0284360182, 0, 0.485714287, 0)
  147. user.Size = UDim2.new(-0.0189573467, 234, -0.0928571448, 50)
  148. user.ZIndex = 2
  149. user.Font = Enum.Font.SourceSans
  150. user.FontSize = Enum.FontSize.Size24
  151. user.Text = "Username"
  152. user.TextColor3 = Color3.new(1, 0.00392157, 0.00392157)
  153. user.TextSize = 20
  154.  
  155. pass.Name = "pass"
  156. pass.Parent = LoginFrame
  157. pass.BackgroundColor3 = Color3.new(0, 0, 0)
  158. pass.BorderColor3 = Color3.new(0.207843, 0.0352941, 0.0313726)
  159. pass.BorderSizePixel = 4
  160. pass.Position = UDim2.new(0.0331753567, 0, 0.678571403, 0)
  161. pass.Size = UDim2.new(-0.0189573467, 233, -0.10357143, 50)
  162. pass.ZIndex = 2
  163. pass.Font = Enum.Font.SourceSans
  164. pass.FontSize = Enum.FontSize.Size24
  165. pass.Text = "Password"
  166. pass.TextColor3 = Color3.new(1, 0.00392157, 0.00392157)
  167. pass.TextSize = 20
  168.  
  169. login.Name = "login"
  170. login.Parent = LoginFrame
  171. login.BackgroundColor3 = Color3.new(0, 0, 0)
  172. login.BorderColor3 = Color3.new(0.207843, 0, 0)
  173. login.BorderSizePixel = 4
  174. login.Position = UDim2.new(0.0331753567, 0, 0.828571439, 0)
  175. login.Size = UDim2.new(-0.0189573467, 233, -0.0392857157, 50)
  176. login.ZIndex = 2
  177. login.Font = Enum.Font.SourceSans
  178. login.FontSize = Enum.FontSize.Size24
  179. login.Text = "Submit"
  180. login.TextColor3 = Color3.new(1, 0.168627, 0.168627)
  181. login.TextSize = 24
  182. login.MouseButton1Down:connect(function()
  183. if user.Text == "toonzue" and pass.text == "hi" then
  184. LoginFrame.Visible = false
  185. Mainframe.Visible = true
  186.  
  187. end
  188. end)
  189. ExeFrame.Name = "ExeFrame"
  190. ExeFrame.Parent = ScreenGui
  191. ExeFrame.Active = true
  192. ExeFrame.BackgroundColor3 = Color3.new(0, 0, 0)
  193. ExeFrame.Draggable = true
  194. ExeFrame.Position = UDim2.new(0.406077325, 0, 0.232409388, 0)
  195. ExeFrame.Size = UDim2.new(0.332280993, 100, 0.212153524, 100)
  196. ExeFrame.Visible = false
  197.  
  198. Frame.Parent = ExeFrame
  199. Frame.BackgroundColor3 = Color3.new(0.807843, 0, 0)
  200. Frame.BorderSizePixel = 0
  201. Frame.Size = UDim2.new(0.808061421, 100, -0.230769232, 100)
  202.  
  203. ScrollingFrame.Parent = ExeFrame
  204. ScrollingFrame.BackgroundColor3 = Color3.new(0.764706, 0.764706, 0.764706)
  205. ScrollingFrame.Position = UDim2.new(0.0874526128, 0, 0.180602014, 0)
  206. ScrollingFrame.Size = UDim2.new(0.658291459, 100, 0.334448159, 100)
  207.  
  208. TextBox.Parent = ScrollingFrame
  209. TextBox.BackgroundColor3 = Color3.new(1, 1, 1)
  210. TextBox.Size = UDim2.new(0.519187331, 200, 2.375, 50)
  211. TextBox.Font = Enum.Font.SourceSans
  212. TextBox.FontSize = Enum.FontSize.Size18
  213. TextBox.Text = "print(\"Script Here\");"
  214. TextBox.TextSize = 15
  215. TextBox.TextXAlignment = Enum.TextXAlignment.Left
  216. TextBox.TextYAlignment = Enum.TextYAlignment.Top
  217.  
  218. execute.Name = "execute"
  219. execute.Parent = ExeFrame
  220. execute.BackgroundColor3 = Color3.new(0, 0, 0)
  221. execute.BorderSizePixel = 0
  222. execute.Position = UDim2.new(0.199616119, 0, 0.882943153, 0)
  223. execute.Size = UDim2.new(-0.143953934, 200, -0.0602006689, 50)
  224. execute.ZIndex = 2
  225. execute.Font = Enum.Font.SourceSans
  226. execute.FontSize = Enum.FontSize.Size24
  227. execute.Text = "Execute"
  228. execute.TextColor3 = Color3.new(1, 0, 0)
  229. execute.TextSize = 20
  230. execute.MouseButton1Down:Connect(function()
  231. if input.Text = "ExitFrame();"then
  232. Mainframe.Visible = true
  233. ExeFrame.Visible = false
  234. else
  235. loadstring(input.Text)()
  236.  
  237. end
  238. end)
  239. clear.Name = "clear"
  240. clear.Parent = ExeFrame
  241. clear.BackgroundColor3 = Color3.new(0, 0, 0)
  242. clear.BorderSizePixel = 0
  243. clear.Position = UDim2.new(0.533589244, 0, 0.882943153, 0)
  244. clear.Size = UDim2.new(-0.143953934, 200, -0.0602006689, 50)
  245. clear.ZIndex = 2
  246. clear.Font = Enum.Font.SourceSans
  247. clear.FontSize = Enum.FontSize.Size24
  248. clear.Text = "Clear"
  249. clear.TextColor3 = Color3.new(1, 0, 0)
  250. clear.TextSize = 20
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement