Advertisement
CheaterRBLX

Shit

Oct 16th, 2017
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 8.00 KB | None | 0 0
  1. -- Objects
  2.  
  3. local MXD = Instance.new("ScreenGui")
  4. local loginframe = Instance.new("Frame")
  5. local bar = Instance.new("Frame")
  6. local bar1 = Instance.new("Frame")
  7. local loginlabel = Instance.new("TextLabel")
  8. local User = Instance.new("TextBox")
  9. local Pass = Instance.new("TextBox")
  10. local login = Instance.new("TextButton")
  11. local MainFrame = Instance.new("Frame")
  12. local bar2 = Instance.new("Frame")
  13. local bar3 = Instance.new("Frame")
  14. local Title = Instance.new("TextLabel")
  15. local credit = Instance.new("TextLabel")
  16. local exebut = Instance.new("TextButton")
  17. local scriptbut = Instance.new("TextButton")
  18. local Exitok = Instance.new("TextButton")
  19. local ExeFrame = Instance.new("Frame")
  20. local bar4 = Instance.new("Frame")
  21. local ScrollingFrame = Instance.new("ScrollingFrame")
  22. local Input = Instance.new("TextBox")
  23. local Execute = Instance.new("TextButton")
  24. local Clear = Instance.new("TextButton")
  25.  
  26. -- Properties
  27.  
  28. MXD.Name = "MXD"
  29. MXD.Parent = game.CoreGui
  30.  
  31. loginframe.Name = "loginframe"
  32. loginframe.Parent = MXD
  33. loginframe.Active = true
  34. loginframe.BackgroundColor3 = Color3.new(0, 0.333333, 1)
  35. loginframe.Draggable = true
  36. loginframe.Position = UDim2.new(0.0389447249, 0, 0.377470344, 0)
  37. loginframe.Selectable = true
  38. loginframe.Size = UDim2.new(0, 253, 0, 268)
  39.  
  40. bar.Name = "bar"
  41. bar.Parent = loginframe
  42. bar.BackgroundColor3 = Color3.new(1, 0, 0)
  43. bar.BorderSizePixel = 0
  44. bar.Size = UDim2.new(0, 253, 0, 10)
  45.  
  46. bar1.Name = "bar1"
  47. bar1.Parent = loginframe
  48. bar1.BackgroundColor3 = Color3.new(0.278431, 0, 0)
  49. bar1.BorderSizePixel = 0
  50. bar1.Position = UDim2.new(0, 0, 0.0373134315, 0)
  51. bar1.Size = UDim2.new(0, 253, 0, 6)
  52.  
  53. loginlabel.Name = "loginlabel"
  54. loginlabel.Parent = loginframe
  55. loginlabel.BackgroundColor3 = Color3.new(1, 1, 1)
  56. loginlabel.BackgroundTransparency = 1
  57. loginlabel.Position = UDim2.new(0.221343875, 0, 0.12686567, 0)
  58. loginlabel.Size = UDim2.new(0, 143, 0, 23)
  59. loginlabel.Font = Enum.Font.SourceSansBold
  60. loginlabel.FontSize = Enum.FontSize.Size14
  61. loginlabel.Text = "Please Login"
  62. loginlabel.TextColor3 = Color3.new(1, 0, 0)
  63. loginlabel.TextScaled = true
  64. loginlabel.TextSize = 14
  65. loginlabel.TextWrapped = true
  66. login.MouseButton1Down:connect(function()
  67. if user.Text == "User" and pass.Text == "Pass" then
  68. loginframe.Visible = false
  69. MainFrame.Visible = true
  70. end
  71. end)
  72. User.Name = "User"
  73. User.Parent = loginframe
  74. User.BackgroundColor3 = Color3.new(1, 0, 0)
  75. User.BorderColor3 = Color3.new(0.239216, 0.376471, 0.47451)
  76. User.BorderSizePixel = 4
  77. User.Position = UDim2.new(0.17786561, 0, 0.317164183, 0)
  78. User.Size = UDim2.new(0, 164, 0, 17)
  79. User.Font = Enum.Font.SourceSans
  80. User.FontSize = Enum.FontSize.Size14
  81. User.Text = "Username"
  82. User.TextScaled = true
  83. User.TextSize = 14
  84. User.TextWrapped = true
  85. User.TextXAlignment = Enum.TextXAlignment.Left
  86.  
  87. Pass.Name = "Pass"
  88. Pass.Parent = loginframe
  89. Pass.BackgroundColor3 = Color3.new(1, 0, 0)
  90. Pass.BorderColor3 = Color3.new(0.239216, 0.376471, 0.47451)
  91. Pass.BorderSizePixel = 4
  92. Pass.Position = UDim2.new(0.17786561, 0, 0.582089543, 0)
  93. Pass.Size = UDim2.new(0, 164, 0, 18)
  94. Pass.Font = Enum.Font.SourceSans
  95. Pass.FontSize = Enum.FontSize.Size14
  96. Pass.Text = "Password"
  97. Pass.TextScaled = true
  98. Pass.TextSize = 14
  99. Pass.TextWrapped = true
  100. Pass.TextXAlignment = Enum.TextXAlignment.Left
  101.  
  102. login.Name = "login"
  103. login.Parent = loginframe
  104. login.BackgroundColor3 = Color3.new(1, 0, 0)
  105. login.BorderSizePixel = 4
  106. login.Position = UDim2.new(0.262845844, 0, 0.791044772, 0)
  107. login.Size = UDim2.new(0, 121, 0, 32)
  108. login.Font = Enum.Font.SourceSansBold
  109. login.FontSize = Enum.FontSize.Size24
  110. login.Text = "Submit"
  111. login.TextSize = 24
  112.  
  113. MainFrame.Name = "MainFrame"
  114. MainFrame.Parent = MXD
  115. MainFrame.Active = true
  116. MainFrame.BackgroundColor3 = Color3.new(0.0627451, 0.360784, 1)
  117. MainFrame.Draggable = true
  118. MainFrame.Position = UDim2.new(0.294251829, 0, -0.000936336815, 0)
  119. MainFrame.Selectable = true
  120. MainFrame.Size = UDim2.new(0, 451, 0, 265)
  121. MainFrame.Visible = false
  122.  
  123. bar2.Name = "bar2"
  124. bar2.Parent = MainFrame
  125. bar2.BackgroundColor3 = Color3.new(1, 0, 0)
  126. bar2.BorderSizePixel = 0
  127. bar2.Size = UDim2.new(0, 451, 0, 7)
  128.  
  129. bar3.Name = "bar3"
  130. bar3.Parent = MainFrame
  131. bar3.BackgroundColor3 = Color3.new(0.580392, 0, 0)
  132. bar3.BorderColor3 = Color3.new(0.352941, 0, 0)
  133. bar3.BorderSizePixel = 0
  134. bar3.Position = UDim2.new(0, 0, 0.0264150947, 0)
  135. bar3.Size = UDim2.new(0, 451, 0, 14)
  136.  
  137. Title.Name = "Title"
  138. Title.Parent = MainFrame
  139. Title.BackgroundColor3 = Color3.new(1, 1, 1)
  140. Title.BackgroundTransparency = 1
  141. Title.Position = UDim2.new(0.337302357, 0, 0.16575624, 0)
  142. Title.Size = UDim2.new(0, 147, 0, 30)
  143. Title.Font = Enum.Font.SourceSansBold
  144. Title.FontSize = Enum.FontSize.Size14
  145. Title.Text = "MXD"
  146. Title.TextColor3 = Color3.new(1, 1, 1)
  147. Title.TextScaled = true
  148. Title.TextSize = 14
  149. Title.TextWrapped = true
  150.  
  151. credit.Name = "credit"
  152. credit.Parent = MainFrame
  153. credit.BackgroundColor3 = Color3.new(1, 1, 1)
  154. credit.BackgroundTransparency = 1
  155. credit.Position = UDim2.new(0.0240174681, 0, 0.933823526, 0)
  156. credit.Size = UDim2.new(0, 79, 0, 18)
  157. credit.Font = Enum.Font.SourceSans
  158. credit.FontSize = Enum.FontSize.Size14
  159. credit.Text = "Made By Mario"
  160. credit.TextColor3 = Color3.new(1, 0.00392157, 0.00392157)
  161. credit.TextScaled = true
  162. credit.TextSize = 14
  163. credit.TextWrapped = true
  164. credit.TextXAlignment = Enum.TextXAlignment.Left
  165.  
  166. exebut.Name = "exebut"
  167. exebut.Parent = MainFrame
  168. exebut.BackgroundColor3 = Color3.new(1, 0, 0)
  169. exebut.Position = UDim2.new(0.243902445, 0, 0.532075465, 0)
  170. exebut.Size = UDim2.new(0, 113, 0, 35)
  171. exebut.Font = Enum.Font.SourceSans
  172. exebut.FontSize = Enum.FontSize.Size24
  173. exebut.Text = "Execute"
  174. exebut.TextSize = 24
  175.  
  176. scriptbut.Name = "scriptbut"
  177. scriptbut.Parent = MainFrame
  178. scriptbut.BackgroundColor3 = Color3.new(1, 0, 0)
  179. scriptbut.Position = UDim2.new(0.514412403, 0, 0.532075465, 0)
  180. scriptbut.Size = UDim2.new(0, 113, 0, 35)
  181. scriptbut.Font = Enum.Font.SourceSans
  182. scriptbut.FontSize = Enum.FontSize.Size24
  183. scriptbut.Text = "Scripts"
  184. scriptbut.TextSize = 24
  185.  
  186. Exitok.Name = "Exitok"
  187. Exitok.Parent = MainFrame
  188. Exitok.BackgroundColor3 = Color3.new(1, 0, 0)
  189. Exitok.Position = UDim2.new(0.782705128, 0, 0.128301889, 0)
  190. Exitok.Size = UDim2.new(0, 88, 0, 30)
  191. Exitok.Font = Enum.Font.SourceSans
  192. Exitok.FontSize = Enum.FontSize.Size24
  193. Exitok.Text = "Exit"
  194. Exitok.TextSize = 24
  195.  
  196. ExeFrame.Name = "ExeFrame"
  197. ExeFrame.Parent = MXD
  198. ExeFrame.BackgroundColor3 = Color3.new(0.0823529, 0.556863, 1)
  199. ExeFrame.Position = UDim2.new(0.407846689, 0, 0.104868911, 0)
  200. ExeFrame.Size = UDim2.new(0, 456, 0, 260)
  201. ExeFrame.Visible = false
  202.  
  203. bar4.Name = "bar4"
  204. bar4.Parent = ExeFrame
  205. bar4.BackgroundColor3 = Color3.new(1, 0, 0)
  206. bar4.Size = UDim2.new(0, 456, 0, 10)
  207.  
  208. ScrollingFrame.Parent = ExeFrame
  209. ScrollingFrame.BackgroundColor3 = Color3.new(0.690196, 0.690196, 0.690196)
  210. ScrollingFrame.Position = UDim2.new(0.092105262, 0, 0.188461542, 0)
  211. ScrollingFrame.Size = UDim2.new(0, 373, 0, 164)
  212. ScrollingFrame.CanvasSize = UDim2.new(0, 0, 1000000, 0)
  213. ScrollingFrame.ScrollBarThickness = 10
  214.  
  215. Input.Name = "Input"
  216. Input.Parent = ScrollingFrame
  217. Input.BackgroundColor3 = Color3.new(1, 1, 1)
  218. Input.BackgroundTransparency = 1
  219. Input.Draggable = true
  220. Input.Size = UDim2.new(0, 359, 0, 437)
  221. Input.Font = Enum.Font.SourceSans
  222. Input.FontSize = Enum.FontSize.Size24
  223. Input.Text = "print(\"Script Here\");"
  224. Input.TextColor3 = Color3.new(1, 0, 0)
  225. Input.TextSize = 20
  226. Input.TextXAlignment = Enum.TextXAlignment.Left
  227. Input.TextYAlignment = Enum.TextYAlignment.Top
  228.  
  229. Execute.Name = "Execute"
  230. Execute.Parent = ExeFrame
  231. Execute.BackgroundColor3 = Color3.new(1, 0, 0)
  232. Execute.Position = UDim2.new(0.232456148, 0, 0.849999964, 0)
  233. Execute.Size = UDim2.new(0, 101, 0, 20)
  234. Execute.Font = Enum.Font.SourceSans
  235. Execute.FontSize = Enum.FontSize.Size24
  236. Execute.Text = "Execute"
  237. Execute.TextSize = 24
  238.  
  239. Clear.Name = "Clear"
  240. Clear.Parent = ExeFrame
  241. Clear.BackgroundColor3 = Color3.new(1, 0, 0)
  242. Clear.Position = UDim2.new(0.495614022, 0, 0.849999964, 0)
  243. Clear.Size = UDim2.new(0, 101, 0, 20)
  244. Clear.Font = Enum.Font.SourceSans
  245. Clear.FontSize = Enum.FontSize.Size24
  246. Clear.Text = "Clear"
  247. Clear.TextSize = 24
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement