Advertisement
Guest User

Untitled

a guest
Feb 22nd, 2020
127
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.79 KB | None | 0 0
  1. - [[
  2.  
  3. ¡Bienvenido a AutoRob V1!
  4.  
  5. AutoRob V1 es una pequeña herramienta de molienda desarrollada por PlutoGFX para automáticamente
  6. generar dinero Es bastante simple en papel:
  7.  
  8. EL BANCO ABRE
  9. -> Ingrese al banco
  10. -> Coloca los explosivos
  11. -> Recoge el dinero
  12. -> Escape
  13.  
  14. Este script intenta automatizar ese proceso, dejándolo con un montón de
  15. ¡Ahorre dinero en sus bolsillos! Espero que encuentres esto útil y sintonices
  16. para futuras actualizaciones!
  17.  
  18.  
  19.  
  20. CAMBIO
  21.  
  22. V1
  23. + AutoRob creado
  24. + Robo bancario automatizado con éxito
  25.  
  26. V1.1
  27. TODO: Detecta si el jugador es criminal / prisionero, y NO guarda
  28. TODO: Detecta si el jugador tiene una bolsa de lona, ​​por más tiempo
  29. TODO: Compruebe si hay guardias que ingresan al banco para escapar rápidamente
  30. TODO: Verifique si el proceso automatizado se interrumpe
  31. TODO: correcciones de errores básicos
  32. TODO: Optimizar. Optimizar. Optimizar.
  33.  
  34. ]]
  35.  
  36.  
  37. función Get (modelo)
  38. juego de regreso: GetService'Workspace '[cadena (modelo)]: GetChildren () [1] .Extra: FindFirstChild'Sign'.Decal;
  39. final
  40.  
  41. función goto (x, y, z)
  42. juego: GetService ('Jugadores'). LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new (x, y, z)
  43. final
  44.  
  45. _G.value = "Esperando ..."
  46.  
  47. alternar local = falso;
  48.  
  49. PlutoGUI local = Instance.new ("ScreenGui")
  50. PlutoGUI.Name = "PlutoGUI"
  51. PlutoGUI.Parent = game.CoreGui
  52. PlutoGUI.ResetOnSpawn = false
  53. -------
  54. local Main = Instance.new ("Frame")
  55. Main.BackgroundColor3 = Color3.new (0.647059, 0.643137, 0.654902)
  56. Main.BorderColor3 = Color3.new (1, 1, 1)
  57. Main.BorderSizePixel = 2
  58. Main.Position = UDim2.new (0, 22, 0, 500)
  59. Main.Size = UDim2.new (0, 200, 0, 150)
  60. Main.ClipsDescendants = true
  61. Main.Draggable = true
  62. Main.Parent = PlutoGUI
  63. -------
  64. Título local = Instance.new ("TextLabel")
  65. Title.Active = true
  66. Title.BorderColor3 = Color3.new (1, 1, 1)
  67. Title.BorderSizePixel = 2
  68. Title.Name = "Título"
  69. Title.Size = UDim2.new (0, 200, 0, 25)
  70. Title.Font = Enum.Font.Legacy
  71. Title.FontSize = Enum.FontSize.Size10
  72. Title.Text = "PlutoGFX's AutoRob | OFF"
  73. Title.Parent = Main
  74. -------
  75. Estado local = Instance.new ("TextLabel")
  76. Status.Active = true
  77. Status.BackgroundTransparency = 1
  78. Status.BorderColor3 = Color3.new (1, 1, 1)
  79. Status.BorderSizePixel = 2
  80. Status.Name = "Estado"
  81. Status.Position = UDim2.new (0, 0, 0, 30)
  82. Status.Size = UDim2.new (0, 200, 0, 50)
  83. Status.Font = Enum.Font.Legacy
  84. Status.FontSize = Enum.FontSize.Size10
  85. Status.Text = "Actualmente apagado"
  86. Status.Parent = Main
  87. -------
  88. Toggle local = Instance.new ("TextButton")
  89. Toggle.Active = true
  90. Toggle.BorderColor3 = Color3.new (1, 1, 1)
  91. Toggle.Name = "Toggle"
  92. Toggle.Position = UDim2.new (0, 25, 0, 90)
  93. Toggle.Selectable = true
  94. Toggle.Size = UDim2.new (0, 150, 0, 50)
  95. Toggle.Style = Enum.ButtonStyle.Custom
  96. Toggle.Font = Enum.Font.Legacy
  97. Toggle.FontSize = Enum.FontSize.Size14
  98. Toggle.Text = "Activar"
  99. Toggle.Parent = Main
  100. Toggle.MouseButton1Down: connect (function ()
  101. if (alternar == verdadero) entonces
  102. alternar = falso;
  103. Title.Text = "PlutoGFX's AutoRob | OFF"
  104. Status.Text = "Actualmente apagado"
  105. Toggle.Text = "Activar"
  106. más
  107. alternar = verdadero;
  108. Title.Text = "PlutoGFX's AutoRob | ON"
  109. Status.Text = "Esperando ..."
  110. Toggle.Text = "APAGAR"
  111. final
  112. final)
  113.  
  114. print ("\ n \ n ------------------------- \ nAutoRob V1 por PlutoGFX cargado! \ n --------- ---------------- \ n \ n ");
  115. banco local = Obtener ('Bancos')
  116.  
  117. bank.Changed: connect (function (prop)
  118. si (alternar) entonces
  119. if prop == 'Transparencia' entonces
  120. if bank.Transparency ~ = 0 entonces
  121. _G.value = "El banco está abierto"
  122. Status.Text = _G.value
  123. esperar (3)
  124. _G.value = "Alarma de activación"
  125. Status.Text = _G.value
  126. if (alternar) luego goto (42, 18, 850) final
  127. esperar (3)
  128. _G.value = "Colocación de dinamita"
  129. Status.Text = _G.value
  130. if (alternar) luego goto (32, 2.6, 818.5) final
  131. esperar (15)
  132. _G.value = "Saquear el Banco"
  133. Status.Text = _G.value
  134. if (alternar) luego goto (23, 0.5, 801.5) final
  135. esperar (30)
  136. _G.value = "Escapar"
  137. Status.Text = _G.value
  138. if (alternar) luego goto (226.5, 18, 1585.5) finaliza
  139. esperar (3)
  140. _G.value = "Ciclo completado!"
  141. Status.Text = _G.value
  142. esperar (3)
  143. _G.value = "Esperando ..."
  144. Status.Text = _G.value
  145. final
  146. final
  147. final
  148. final)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement