Advertisement
Guest User

Untitled

a guest
Jul 9th, 2017
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.60 KB | None | 0 0
  1. -- Objects
  2.  
  3. local ScreenGui = Instance.new("ScreenGui")
  4. local Frame1 = Instance.new("Frame")
  5. local Exdevil = Instance.new("TextLabel")
  6. local user = Instance.new("TextBox")
  7. local pass = Instance.new("TextBox")
  8. local submit = Instance.new("TextButton")
  9. local credits = Instance.new("TextLabel")
  10. local Frame2 = Instance.new("Frame")
  11. local execute = Instance.new("TextButton")
  12. local ScrollingFrame = Instance.new("ScrollingFrame")
  13. local exe = Instance.new("TextBox")
  14. local Exdevil_2 = Instance.new("TextLabel")
  15. local clear = Instance.new("TextButton")
  16.  
  17. -- Properties
  18.  
  19. ScreenGui.Parent = game.CoreGui
  20.  
  21. Frame1.Name = "Frame1"
  22. Frame1.Parent = ScreenGui
  23. Frame1.Active = true
  24. Frame1.BackgroundColor3 = Color3.new(0, 0, 0)
  25. Frame1.BorderSizePixel = 0
  26. Frame1.Draggable = true
  27. Frame1.Position = UDim2.new(0.249228895, 0, 0.138110071, 0)
  28. Frame1.Selectable = true
  29. Frame1.Size = UDim2.new(0.135718688, 100, 0.380062312, 100)
  30.  
  31. Exdevil.Name = "Exdevil"
  32. Exdevil.Parent = Frame1
  33. Exdevil.BackgroundColor3 = Color3.new(0, 0, 0)
  34. Exdevil.BorderSizePixel = 0
  35. Exdevil.Position = UDim2.new(0, 0, 0.00269541889, 0)
  36. Exdevil.Size = UDim2.new(0.375, 200, 0.0515021458, 50)
  37. Exdevil.Font = Enum.Font.SourceSans
  38. Exdevil.FontSize = Enum.FontSize.Size36
  39. Exdevil.Text = "Exdevil"
  40. Exdevil.TextColor3 = Color3.new(1, 0.113725, 0)
  41. Exdevil.TextSize = 35
  42.  
  43. user.Name = "user"
  44. user.Parent = Frame1
  45. user.BackgroundColor3 = Color3.new(0, 0, 0)
  46. user.BorderColor3 = Color3.new(1, 1, 0.00784314)
  47. user.BorderSizePixel = 4
  48. user.Position = UDim2.new(0.046052631, 0, 0.336021513, 0)
  49. user.Size = UDim2.new(0.253289461, 200, -0.0107526882, 50)
  50. user.Font = Enum.Font.SourceSans
  51. user.FontSize = Enum.FontSize.Size14
  52. user.Text = "Username"
  53. user.TextColor3 = Color3.new(1, 1, 0)
  54. user.TextSize = 14
  55.  
  56. pass.Name = "pass"
  57. pass.Parent = Frame1
  58. pass.BackgroundColor3 = Color3.new(0, 0, 0)
  59. pass.BorderColor3 = Color3.new(1, 0.933333, 0)
  60. pass.BorderSizePixel = 4
  61. pass.Position = UDim2.new(0.046052631, 0, 0.575268805, 0)
  62. pass.Size = UDim2.new(0.253289461, 200, -0.0215053763, 50)
  63. pass.Font = Enum.Font.SourceSans
  64. pass.FontSize = Enum.FontSize.Size14
  65. pass.Text = "Password"
  66. pass.TextColor3 = Color3.new(0.984314, 1, 0)
  67. pass.TextSize = 14
  68. pass.TextStrokeColor3 = Color3.new(1, 0.968628, 0)
  69.  
  70. submit.Name = "submit"
  71. submit.Parent = Frame1
  72. submit.BackgroundColor3 = Color3.new(0, 0, 0)
  73. submit.BorderColor3 = Color3.new(1, 0, 0)
  74. submit.BorderSizePixel = 4
  75. submit.Position = UDim2.new(0.25, 0, 0.817596555, 0)
  76. submit.Size = UDim2.new(-0.125, 200, 0, 50)
  77. submit.Font = Enum.Font.SourceSans
  78. submit.FontSize = Enum.FontSize.Size28
  79. submit.Text = "Sumbit"
  80. submit.TextColor3 = Color3.new(1, 0, 0)
  81. submit.TextSize = 27
  82. submit.MouseButton1Down:connect(function()
  83. if user.Text =="amit" and pass.Text == "123" then
  84. Frame1.Visible = false
  85. Frame2.Visible = true
  86. end
  87. end)
  88. credits.Name = "credits"
  89. credits.Parent = Frame1
  90. credits.BackgroundColor3 = Color3.new(0, 0, 0)
  91. credits.BorderSizePixel = 0
  92. credits.Position = UDim2.new(0, 0, 0.188841194, 0)
  93. credits.Size = UDim2.new(0.375, 200, -0.0257510729, 50)
  94. credits.ZIndex = 2
  95. credits.Font = Enum.Font.SourceSans
  96. credits.FontSize = Enum.FontSize.Size24
  97. credits.Text = "Made by Amit Baruch"
  98. credits.TextColor3 = Color3.new(0.0666667, 0, 1)
  99. credits.TextSize = 20
  100.  
  101. Frame2.Name = "Frame2"
  102. Frame2.Parent = ScreenGui
  103. Frame2.Active = true
  104. Frame2.BackgroundColor3 = Color3.new(0, 0, 0)
  105. Frame2.Draggable = true
  106. Frame2.Position = UDim2.new(0.534855068, 0, 0.279335409, 0)
  107. Frame2.Selectable = true
  108. Frame2.Size = UDim2.new(0.256631702, 100, 0.238836974, 100)
  109. Frame2.Visible = false
  110.  
  111. execute.Name = "execute"
  112. execute.Parent = Frame2
  113. execute.BackgroundColor3 = Color3.new(0, 0, 0)
  114. execute.BorderColor3 = Color3.new(1, 0, 0)
  115. execute.BorderSizePixel = 4
  116. execute.Position = UDim2.new(0.217054278, 0, 0.81470561, 0)
  117. execute.Size = UDim2.new(-0.141472861, 200, 0, 50)
  118. execute.ZIndex = 2
  119. execute.Font = Enum.Font.SourceSans
  120. execute.FontSize = Enum.FontSize.Size28
  121. execute.Text = "Execute"
  122. execute.TextColor3 = Color3.new(1, 0, 0)
  123. execute.TextSize = 27
  124. execute.MouseButton1Down:connect(function()
  125. if exe.Text == "ExitFrame();" then
  126. Frame1.Visible=false
  127.  
  128. loadstring(exe.Text)()
  129.  
  130. end
  131. end)
  132.  
  133.  
  134.  
  135. ScrollingFrame.Parent = Frame2
  136. ScrollingFrame.BackgroundColor3 = Color3.new(166, 166, 166)
  137. ScrollingFrame.Position = UDim2.new(0.151162788, 0, 0.148484856, 0)
  138. ScrollingFrame.Size = UDim2.new(0.501937985, 100, 0.315151513, 100)
  139.  
  140. exe.Name = "exe"
  141. exe.Parent = ScrollingFrame
  142. exe.BackgroundColor3 = Color3.new(166, 166, 166)
  143. exe.Size = UDim2.new(0.401114196, 20000, 3.55882359, 50)
  144. exe.Font = Enum.Font.SourceSans
  145. exe.FontSize = Enum.FontSize.Size14
  146. exe.TextSize = 14
  147. exe.TextXAlignment = Enum.TextXAlignment.Left
  148. exe.TextYAlignment = Enum.TextYAlignment.Top
  149.  
  150. Exdevil_2.Name = "Exdevil"
  151. Exdevil_2.Parent = Frame2
  152. Exdevil_2.BackgroundColor3 = Color3.new(0, 0, 0)
  153. Exdevil_2.BorderSizePixel = 0
  154. Exdevil_2.Position = UDim2.new(0.0106589152, 0, 0.0363636352, 0)
  155. Exdevil_2.Size = UDim2.new(0.591085255, 200, -0.0393939391, 50)
  156. Exdevil_2.Font = Enum.Font.SourceSans
  157. Exdevil_2.FontSize = Enum.FontSize.Size36
  158. Exdevil_2.Text = "Exdevil"
  159. Exdevil_2.TextColor3 = Color3.new(1, 0.113725, 0)
  160. Exdevil_2.TextSize = 35
  161.  
  162. clear.Name = "clear"
  163. clear.Parent = Frame2
  164. clear.BackgroundColor3 = Color3.new(0, 0, 0)
  165. clear.BorderColor3 = Color3.new(1, 0, 0)
  166. clear.BorderSizePixel = 4
  167. clear.Position = UDim2.new(0.532945752, 0, 0.815151513, 0)
  168. clear.Size = UDim2.new(-0.137596905, 200, 0, 50)
  169. clear.ZIndex = 3
  170. clear.Font = Enum.Font.SourceSans
  171. clear.FontSize = Enum.FontSize.Size28
  172. clear.Text = "Clear"
  173. clear.TextColor3 = Color3.new(1, 0, 0)
  174. clear.TextSize = 27
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement