Advertisement
Guest User

Untitled

a guest
Aug 24th, 2019
118
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 6.55 KB | None | 0 0
  1. -- Instances:
  2. local ExploitEmulation = Instance.new("ScreenGui")
  3. local Bar = Instance.new("Frame")
  4. local Scroller = Instance.new("ScrollingFrame")
  5. local Input = Instance.new("TextBox")
  6. local BottomBar = Instance.new("Frame")
  7. local Credit = Instance.new("TextLabel")
  8. local Exec = Instance.new("TextButton")
  9. local Clear = Instance.new("TextButton")
  10. local Injec = Instance.new("TextButton")
  11. local Title = Instance.new("TextLabel")
  12. local Title2 = Instance.new("TextLabel")
  13. local Exit = Instance.new("TextButton")
  14. local Mini = Instance.new("TextButton")
  15. local Max = Instance.new("TextButton")
  16. local RemoteEvent = Instance.new("RemoteEvent")
  17. --Properties:
  18. ExploitEmulation.Name = "ExploitEmulation"
  19. ExploitEmulation.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  20. ExploitEmulation.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  21.  
  22. Bar.Name = "Bar"
  23. Bar.Parent = ExploitEmulation
  24. Bar.BackgroundColor3 = Color3.new(0.235294, 0.235294, 0.235294)
  25. Bar.BorderSizePixel = 0
  26. Bar.Position = UDim2.new(0.535416663, 0, 0.364332259, 0)
  27. Bar.Size = UDim2.new(0, 645, 0, 41)
  28.  
  29. Scroller.Name = "Scroller"
  30. Scroller.Parent = Bar
  31. Scroller.BackgroundColor3 = Color3.new(0, 0, 0)
  32. Scroller.BorderSizePixel = 0
  33. Scroller.Position = UDim2.new(0, 0, 0.963753283, 0)
  34. Scroller.Size = UDim2.new(0, 644, 0, 403)
  35. Scroller.CanvasSize = UDim2.new(0, 0, 1000000, 0)
  36.  
  37. Input.Name = "Input"
  38. Input.Parent = Scroller
  39. Input.BackgroundColor3 = Color3.new(1, 1, 1)
  40. Input.BackgroundTransparency = 1
  41. Input.Size = UDim2.new(0, 644, 0, 402)
  42. Input.Font = Enum.Font.Code
  43. Input.Text = "print(\"hackerman\")"
  44. Input.TextColor3 = Color3.new(0, 1, 0)
  45. Input.TextSize = 20
  46. Input.TextXAlignment = Enum.TextXAlignment.Left
  47. Input.TextYAlignment = Enum.TextYAlignment.Top
  48.  
  49. BottomBar.Name = "BottomBar"
  50. BottomBar.Parent = Bar
  51. BottomBar.BackgroundColor3 = Color3.new(0.235294, 0.235294, 0.235294)
  52. BottomBar.BorderSizePixel = 0
  53. BottomBar.Position = UDim2.new(0, 0, 10.7887688, 0)
  54. BottomBar.Size = UDim2.new(0, 644, 0, 101)
  55.  
  56. Credit.Name = "Credit"
  57. Credit.Parent = BottomBar
  58. Credit.BackgroundColor3 = Color3.new(1, 1, 1)
  59. Credit.BackgroundTransparency = 1
  60. Credit.BorderColor3 = Color3.new(0.105882, 0.164706, 0.207843)
  61. Credit.Position = UDim2.new(0, 0, 0.504950523, 0)
  62. Credit.Size = UDim2.new(0, 200, 0, 50)
  63. Credit.Font = Enum.Font.SourceSansItalic
  64. Credit.Text = "Executor By Aruroso"
  65. Credit.TextColor3 = Color3.new(1, 1, 1)
  66. Credit.TextSize = 17
  67. Credit.TextXAlignment = Enum.TextXAlignment.Left
  68. Credit.TextYAlignment = Enum.TextYAlignment.Bottom
  69.  
  70. Exec.Name = "Exec"
  71. Exec.Parent = BottomBar
  72. Exec.BackgroundColor3 = Color3.new(0.196078, 0.196078, 0.196078)
  73. Exec.BorderColor3 = Color3.new(0.0392157, 0.0392157, 0.0392157)
  74. Exec.BorderSizePixel = 5
  75. Exec.Position = UDim2.new(0.0993788838, 0, 0.247524768, 0)
  76. Exec.Size = UDim2.new(0, 200, 0, 50)
  77. Exec.Font = Enum.Font.GothamSemibold
  78. Exec.Text = "Execute"
  79. Exec.TextColor3 = Color3.new(1, 1, 1)
  80. Exec.TextScaled = true
  81. Exec.TextSize = 14
  82. Exec.TextWrapped = true
  83. Exec.MouseButton1Down:Connect(function()
  84. RemoteEvent:FireServer(Input.Text)
  85. end)
  86.  
  87. Clear.Name = "Clear"
  88. Clear.Parent = BottomBar
  89. Clear.BackgroundColor3 = Color3.new(0.196078, 0.196078, 0.196078)
  90. Clear.BorderColor3 = Color3.new(0.0392157, 0.0392157, 0.0392157)
  91. Clear.BorderSizePixel = 5
  92. Clear.Position = UDim2.new(0.610248446, 0, 0.247524768, 0)
  93. Clear.Size = UDim2.new(0, 200, 0, 50)
  94. Clear.Font = Enum.Font.GothamSemibold
  95. Clear.Text = "Clear"
  96. Clear.TextColor3 = Color3.new(1, 1, 1)
  97. Clear.TextScaled = true
  98. Clear.TextSize = 14
  99. Clear.TextWrapped = true
  100. Clear.MouseButton1Down:connect(function()
  101. Input.Text = ""
  102. end)
  103.  
  104. Injec.Name = "Injec"
  105. Injec.Parent = BottomBar
  106. Injec.BackgroundColor3 = Color3.new(0.196078, 0.196078, 0.196078)
  107. Injec.BorderColor3 = Color3.new(0.0392157, 0.0392157, 0.0392157)
  108. Injec.BorderSizePixel = 5
  109. Injec.Position = UDim2.new(0.442546576, 0, 0.247524753, 0)
  110. Injec.Size = UDim2.new(0, 88, 0, 50)
  111. Injec.Font = Enum.Font.GothamSemibold
  112. Injec.Text = "Inject"
  113. Injec.TextColor3 = Color3.new(1, 1, 1)
  114. Injec.TextScaled = true
  115. Injec.TextSize = 14
  116. Injec.TextWrapped = true
  117. Injec.MouseButton1Down:connect(function()
  118. Input.Text = "Injecting."
  119. wait(0.2)
  120. Input.Text = "Injecting.."
  121. wait(0.2)
  122. Input.Text = "Injecting..."
  123. wait(0.2)
  124. Input.Text = "Injecting."
  125. wait(0.2)
  126. Input.Text = "Injecting.."
  127. wait(0.2)
  128. Input.Text = "Injecting..."
  129. wait(0.2)
  130. Input.Text = "Injected!"
  131. end)
  132.  
  133. Title.Name = "Title"
  134. Title.Parent = Bar
  135. Title.BackgroundColor3 = Color3.new(1, 1, 1)
  136. Title.BackgroundTransparency = 1
  137. Title.Size = UDim2.new(0, 53, 0, 41)
  138. Title.Font = Enum.Font.GothamSemibold
  139. Title.Text = "H"
  140. Title.TextColor3 = Color3.new(1, 1, 1)
  141. Title.TextScaled = true
  142. Title.TextSize = 14
  143. Title.TextWrapped = true
  144.  
  145. Title2.Name = "Title2"
  146. Title2.Parent = Title
  147. Title2.BackgroundColor3 = Color3.new(1, 1, 1)
  148. Title2.BackgroundTransparency = 1
  149. Title2.Position = UDim2.new(0.649289727, 0, 0, 0)
  150. Title2.Size = UDim2.new(0, 30, 0, 22)
  151. Title2.Font = Enum.Font.GothamSemibold
  152. Title2.Text = "M"
  153. Title2.TextColor3 = Color3.new(0, 1, 0)
  154. Title2.TextScaled = true
  155. Title2.TextSize = 14
  156. Title2.TextWrapped = true
  157.  
  158. Exit.Name = "Exit"
  159. Exit.Parent = Bar
  160. Exit.BackgroundColor3 = Color3.new(1, 1, 1)
  161. Exit.BackgroundTransparency = 1
  162. Exit.Position = UDim2.new(0.919532597, 0, 0, 0)
  163. Exit.Size = UDim2.new(0, 50, 0, 41)
  164. Exit.Font = Enum.Font.GothamSemibold
  165. Exit.Text = "X"
  166. Exit.TextColor3 = Color3.new(1, 1, 1)
  167. Exit.TextScaled = true
  168. Exit.TextSize = 14
  169. Exit.TextWrapped = true
  170. Exit.MouseButton1Down:connect(function()
  171. Bar.Visible = false
  172. end)
  173.  
  174. Mini.Name = "Mini"
  175. Mini.Parent = Bar
  176. Mini.BackgroundColor3 = Color3.new(1, 1, 1)
  177. Mini.BackgroundTransparency = 1
  178. Mini.Position = UDim2.new(0.84201324, 0, 0, 0)
  179. Mini.Size = UDim2.new(0, 50, 0, 41)
  180. Mini.Font = Enum.Font.GothamSemibold
  181. Mini.Text = "-"
  182. Mini.TextColor3 = Color3.new(1, 1, 1)
  183. Mini.TextScaled = true
  184. Mini.TextSize = 14
  185. Mini.TextWrapped = true
  186. Mini.MouseButton1Down:connect(function()
  187. Mini.Visible = false
  188. Max.Visible = true
  189. BottomBar.Visible = false
  190. Scroller.Visible = false
  191. end)
  192.  
  193. Max.Name = "Max"
  194. Max.Parent = Bar
  195. Max.BackgroundColor3 = Color3.new(1, 1, 1)
  196. Max.BackgroundTransparency = 1
  197. Max.Position = UDim2.new(0.84201324, 0, 0, 0)
  198. Max.Size = UDim2.new(0, 50, 0, 41)
  199. Max.Visible = false
  200. Max.Font = Enum.Font.GothamSemibold
  201. Max.Text = "+"
  202. Max.TextColor3 = Color3.new(1, 1, 1)
  203. Max.TextScaled = true
  204. Max.TextSize = 14
  205. Max.TextWrapped = true
  206. Max.MouseButton1Down:connect(function()
  207. Mini.Visible = true
  208. Max.Visible = false
  209. BottomBar.Visible = true
  210. Scroller.Visible = true
  211. end)
  212. -- Scripts:
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement