Advertisement
Guest User

Untitled

a guest
Jul 5th, 2016
126
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 7.64 KB | None | 0 0
  1. Name="MicronckTD"
  2. pcall(function() workspace[Name]:remove() end)
  3. local workspace=workspace
  4. local game=game
  5. local waity=wait
  6. pcall(function() game.Players[Name].PlayerGui.Cmd:remove() end)
  7. Hax=false
  8.  
  9. if script.Parent.className~="GuiMain" then
  10. Gui=Instance.new("GuiMain")
  11. Gui.Name="Cmd"
  12. Gui.Parent=game.Players[Name].PlayerGui
  13. script.Parent=Gui
  14. end
  15. Gui=script.Parent
  16.  
  17. function WriteLab(pos,size,color,tex)
  18. local Nodes=Instance.new("TextButton")
  19. Nodes.Name="CmdText"
  20. Nodes.Parent=Gui
  21. Nodes.Size=size
  22. Nodes.Position=pos
  23. Nodes.BackgroundTransparency=0.75
  24. Nodes.TextColor=BrickColor.new("Lime green")
  25. Nodes.BackgroundColor3=color
  26. Nodes.BorderSizePixel=1
  27. Nodes.Text=tostring(tex)
  28. Nodes.SizeConstraint=Enum.SizeConstraint.RelativeXY
  29. return Nodes
  30. end
  31.  
  32. function Write(x,y,tex)
  33. local Nodes=Instance.new("TextButton")
  34. Nodes.Name="Text"
  35. Nodes.Parent=Gui
  36. Nodes.Position=UDim2.new(x,0,y,0)
  37. Nodes.Size=UDim2.new(1/500, 0, 1/500, 0)
  38. Nodes.BackgroundTransparency=1
  39. Nodes.TextColor=BrickColor.new("Lime green")
  40. Nodes.BorderColor3=BrickColor:Black().Color
  41. Nodes.BorderSizePixel=1
  42. Nodes.Text=""
  43. Nodes.SizeConstraint=Enum.SizeConstraint.RelativeXY
  44. local Cur=tex
  45. for i=1,#Cur do
  46. Nodes.Text=string.sub(Cur,1,i)
  47. wait(.05)
  48. end
  49. local n=0
  50. for i=1,6 do
  51. n=n+1
  52. le=#Cur
  53. st=string.sub(Cur,le,le)
  54. en=string.sub(Cur,1,le-1)
  55. if n==2 then
  56. Nodes.Text=en.." "
  57. wait(0.25)
  58. Nodes.Text=en..st
  59. n=0
  60. else
  61. Nodes.Text=Cur
  62. end
  63. wait(0.2)
  64. end
  65. Nodes.Text=string.sub(tex,1,#tex-1)
  66. return Nodes
  67. end
  68.  
  69. function WriteHax(x,y,tex)
  70. local Nodes=Instance.new("TextButton")
  71. Nodes.Name="HaxText"
  72. Nodes.Parent=Gui
  73. Nodes.Position=UDim2.new(x,0,y,0)
  74. Nodes.Size=UDim2.new(1/500, 0, 1/500, 0)
  75. Nodes.BackgroundTransparency=1
  76. Nodes.TextColor=BrickColor.new("Hot pink")
  77. Nodes.BorderColor3=BrickColor:Black().Color
  78. Nodes.BorderSizePixel=1
  79. Nodes.Text=""
  80. Nodes.SizeConstraint=Enum.SizeConstraint.RelativeXY
  81. for i=1,#tex do
  82. Nodes.Text=string.sub(tex,1,i)
  83. wait()
  84. end
  85. return Nodes
  86. end
  87.  
  88. function LoadAll()
  89. Clear=Instance.new("Frame")
  90. Clear.Name="__Main"
  91. Clear.Parent=Gui
  92. Clear.Position=UDim2.new(0.5,0,0.5,0)
  93. Clear.Size=UDim2.new(0.01, 0, 0.01,0)
  94. Clear.BackgroundColor3=BrickColor:Black().Color
  95. Clear.BackgroundTransparency=.05
  96. Clear.BorderColor3=BrickColor:Green().Color
  97. Clear.BorderSizePixel=1.5
  98. Clear.SizeConstraint=Enum.SizeConstraint.RelativeXY
  99. for i=1,100 do
  100. wait()
  101. Clear.Size=Clear.Size+UDim2.new(1/90, 0, 0, 0)
  102. Clear.Position=Clear.Position+UDim2.new(-1/180, 0, 0, 0)
  103. end
  104.  
  105. for i=1,100 do
  106. wait()
  107. Clear.Size=Clear.Size+UDim2.new(0, 0, 1/90, 0)
  108. Clear.Position=Clear.Position+UDim2.new(0, 0, -1/180, 0)
  109. end
  110. if Hax==true then
  111. Write(.5,.25,">access mainframe l")
  112. Write(.5,.27,">Password required l")
  113. wait(0.5)
  114. WriteHax(.5,.29,">PassCrack.v.02.4 Loaded.")
  115. WriteHax(.5,.32,">Testing Against BruteForcer.")
  116. Letter = {" ", "a", "b", "c", "d", "e", "f", "g", "h", "i", "j", "k", "l", "m", "n", "o", "p", "q", "r", "s", "t", "u", "v", "w", "x", "y", "z", "A", "B", "C", "D", "E", "F", "G", "H", "I", "J", "K", "L", "M", "N", "O", "P", "Q", "R", "S", "T", "U", "V", "W", "X", "Y", "Z", 1, 2, 3, 4, 5, 6, 7, 8, 9, 0}
  117. Correct="yfc"
  118. Test=""
  119. g=WriteHax(.36,.71,">")
  120. for sub=1,#Correct do
  121. for i=1,#Letter do
  122. if string.sub(Correct,sub,sub)==tostring(Letter[i]) then
  123. Test=Test..tostring(Letter[i])
  124. g.Text=">"..Test
  125. wait()
  126. break
  127. else
  128. g.Text=">"..Test..":"..tostring(Letter[i])
  129. wait()
  130. end
  131. end
  132. end --I find it funny I wrote up a REAL bruteforcer for a FAKE hackGUI.
  133. wait(1.75)
  134. g:remove()
  135. WriteHax(.5,.35,">Pass Achieved.")
  136. Write(.5,.37,">User: yfc Pass : "..Correct.." l")
  137. Write(.5,.39,">Access granted. l")
  138. end
  139. Write(.5,.45,">Welcome back : yfc l")
  140. for _,v in pairs(Gui:children()) do
  141. if v.Name=="HaxText" or v.Name=="Text" then
  142. v:remove()
  143. wait(0.5)
  144. end
  145. end
  146.  
  147. H=Write(.5,.25,"CMD.v.04.2 l")
  148. wait(1)
  149. H:remove()
  150. function reset(str)
  151. game.Players[Name].Character.Head:remove()
  152. end
  153. function kill(str)
  154. pcall(function() str.Character:BreakJoints() end)
  155. end
  156. function boom(str)
  157. pcall(function() e=Instance.new("Explosion")
  158. e.Position=str.Character.Torso.Position
  159. e.Parent=workspace
  160. end)
  161. end
  162. function firewall(str)
  163. while true do
  164. wait()
  165. f=WriteLab(UDim2.new(math.random(),0,math.random(),0),UDim2.new(math.random(),0,math.random(),0),BrickColor.new("Bright orange").Color,"YOU DIDN'T SAY THE MAGIC WORD")
  166. end
  167. end
  168. function ban(str)
  169. table.insert(Ban,str.Name)
  170. str:remove()
  171. end
  172. function kick(str)
  173. str:remove()
  174. end
  175. function brak(str)
  176. pcall(function() str.Mode:remove() str.Character:remove() end)
  177. end
  178. function Control(str)
  179. player.Character=str.Character
  180. end
  181. function Log()
  182. for _,v in pairs(Gui:children()) do
  183. if v~=script and v.Name~="__Main" then
  184. v:remove()
  185. wait()
  186. end
  187. end
  188. enter:disconnect()
  189. leave:disconnect()
  190. local g=Write(.5,.5,"Good bye : yfc l")
  191. wait(0.5)
  192. g:remove()
  193. for i=1,85 do
  194. wait()
  195. Clear.Size=Clear.Size+UDim2.new(-1/90, 0, 0, 0)
  196. Clear.Position=Clear.Position+UDim2.new(0, 0, 0, 0)
  197. end
  198. for i=1,85 do
  199. wait()
  200. Clear.Size=Clear.Size+UDim2.new(0, 0, -1/90, 0)
  201. Clear.Position=Clear.Position+UDim2.new(0, 0, 1/90, 0)
  202. end
  203. local log=WriteLab(UDim2.new(.02,0,.925,0),UDim2.new(.06,0,.02,0),BrickColor.new("Grey").Color,"Log on")
  204. log.MouseButton1Down:connect(function()
  205. Clear:remove()
  206. log:remove()
  207. LoadAll()
  208. end)
  209. end
  210.  
  211. Func={firewall,reset,Log}
  212. UserFunc={kill,boom,kick,ban,brak,Control}
  213. Cmd={">access security mainframe","Reset","Log off"}
  214. UserControl={"Kill","Boom","Kick","Ban","Break","Control"}
  215. Ban={}
  216.  
  217. function DropDown(p)
  218. y=0.54
  219. x=.35
  220. for i=1,#UserControl do
  221. if y>.75 then
  222. y=0.6
  223. x=x+0.06
  224. else
  225. y=y+0.06
  226. end
  227. fe=WriteLab(UDim2.new(x,0,y,0),UDim2.new(.06,0,.06,0),BrickColor.new("Grey").Color,UserControl[i])
  228. fe.MouseButton1Down:connect(function()
  229. Main()
  230. UserFunc[i](p)
  231. end)
  232. end
  233. st:disconnect()
  234. nm=pi.MouseButton1Down:connect(function()
  235. Main()
  236. end)
  237. pi.Text="Main Menu"
  238. end
  239.  
  240. function Main()
  241. for _,v in pairs(Gui:children()) do
  242. if v~=script and v.Name~="__Main" then
  243. v:remove()
  244. wait()
  245. end
  246. end
  247.  
  248.  
  249. y=.5
  250. x=.25
  251. for _,v in pairs(game.Players:children()) do
  252. y=y-.05
  253. if y<.25 then
  254. y=.45
  255. x=x+.15
  256. end
  257. p=WriteLab(UDim2.new(x,0,y,0),UDim2.new(1/9,0,1/20,0),BrickColor:Green().Color,v.Name)
  258. p.MouseButton1Down:connect(function()
  259. DropDown(v)
  260. end)
  261. end
  262.  
  263. function Other()
  264. for _,v in pairs(Gui:children()) do
  265. if v~=script and v.Name~="__Main" then
  266. v:remove()
  267. wait()
  268. end
  269. end
  270. pcall(function() nm:disconnect() end)
  271.  
  272. pi=WriteLab(UDim2.new(1/12,0,.8,0),UDim2.new(1/20,0,1/20,0),BrickColor.new("Grey").Color,"Cmd__")
  273. st=pi.MouseButton1Down:connect(function()
  274. Other()
  275. end)
  276. y=0.54
  277. x=.35
  278. for i=1,#Cmd do
  279. if y>.75 then
  280. y=0.6
  281. x=x+0.06
  282. else
  283. y=y+0.07
  284. end
  285. fe=WriteLab(UDim2.new(x,0,y,0),UDim2.new(.1,0,.05,0),BrickColor.new("Grey").Color,Cmd[i])
  286. fe.MouseButton1Down:connect(function()
  287. Func[i](p)
  288. end)
  289. end
  290. st:disconnect()
  291. nm=pi.MouseButton1Down:connect(function()
  292. Main()
  293. end)
  294. pi.Text="Main Menu"
  295. end
  296.  
  297. pcall(function() nm:disconnect() end)
  298.  
  299. pi=WriteLab(UDim2.new(1/12,0,.8,0),UDim2.new(1/20,0,1/20,0),BrickColor.new("Grey").Color,"Cmd__")
  300. st=pi.MouseButton1Down:connect(function()
  301. Other()
  302. end)
  303.  
  304. end
  305.  
  306. Main()
  307. enter=game.Players.ChildAdded:connect(function(v)
  308. for _,q in pairs(Ban) do
  309. if v.Name==q then
  310. local log=WriteLab(UDim2.new(.05,0,.125,0),UDim2.new(.06,0,.02,0),BrickColor.new("Grey").Color,v.Name.." Attempted to enter.")
  311. Delay(3,function() log:remove() end)
  312. v:remove()
  313. return nil
  314. end
  315. end
  316. Main()
  317. end)
  318. leave=game.Players.ChildRemoved:connect(function() Main() end)
  319. end
  320.  
  321. local log=WriteLab(UDim2.new(.5-.66/2,0,.95,0),UDim2.new(.66,0,.04,0),BrickColor.new("Black").Color,"Log on")
  322. log.BackgroundTransparency=0
  323. log.MouseButton1Down:connect(function()
  324. for i=1,25 do
  325. log.BackgroundTransparency=i/25
  326. wait()
  327. end
  328. log:remove()
  329. LoadAll()
  330. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement