Advertisement
Guest User

OverKill(Not Complete)

a guest
Oct 17th, 2017
129
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 12.90 KB | None | 0 0
  1. -- Objects
  2.  
  3. local Overkill = 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. local ScriptFrame = Instance.new("Frame")
  26. local AnotherBar = Instance.new("Frame")
  27. local grab = Instance.new("TextButton")
  28. local glock = Instance.new("TextButton")
  29. local tk = Instance.new("TextButton")
  30. local proto = Instance.new("TextButton")
  31. local sgui = Instance.new("TextButton")
  32. local exitscripts = Instance.new("TextButton")
  33. -- Properties
  34.  
  35. Overkill.Name = "Overkill"
  36. Overkill.Parent = game.CoreGui
  37.  
  38. LoginFrame.Name = "LoginFrame"
  39. LoginFrame.Parent = Overkill
  40. LoginFrame.Active = true
  41. LoginFrame.BackgroundColor3 = Color3.new(0, 0, 0)
  42. LoginFrame.BorderColor3 = Color3.new(1, 0.0117647, 0)
  43. LoginFrame.BorderSizePixel = 4
  44. LoginFrame.Draggable = true
  45. LoginFrame.Position = UDim2.new(0, 205, 0, 171)
  46. LoginFrame.Selectable = true
  47. LoginFrame.Size = UDim2.new(0, 282, 0, 357)
  48.  
  49. bar.Name = "bar"
  50. bar.Parent = LoginFrame
  51. bar.BackgroundColor3 = Color3.new(1, 0.0235294, 0)
  52. bar.BackgroundTransparency = 0.38999998569489
  53. bar.Size = UDim2.new(0, 282, 0, 22)
  54.  
  55. bar1.Name = "bar1"
  56. bar1.Parent = LoginFrame
  57. bar1.BackgroundColor3 = Color3.new(0.501961, 0, 0.00392157)
  58. bar1.Position = UDim2.new(0, 0, 0, 23)
  59. bar1.Size = UDim2.new(0, 282, 0, 4)
  60.  
  61. loginlabel.Name = "loginlabel"
  62. loginlabel.Parent = LoginFrame
  63. loginlabel.BackgroundColor3 = Color3.new(1, 1, 1)
  64. loginlabel.BackgroundTransparency = 1
  65. loginlabel.Position = UDim2.new(0, 39, 0, 36)
  66. loginlabel.Size = UDim2.new(0, 204, 0, 36)
  67. loginlabel.Font = Enum.Font.SourceSans
  68. loginlabel.FontSize = Enum.FontSize.Size14
  69. loginlabel.Text = "Please Login"
  70. loginlabel.TextColor3 = Color3.new(0.839216, 0, 0.0588235)
  71. loginlabel.TextScaled = true
  72. loginlabel.TextSize = 14
  73. loginlabel.TextWrapped = true
  74.  
  75. user.Name = "user"
  76. user.Parent = LoginFrame
  77. user.BackgroundColor3 = Color3.new(0.921569, 0.0313726, 0)
  78. user.BackgroundTransparency = 0.40000000596046
  79. user.BorderColor3 = Color3.new(1, 0.0941177, 0)
  80. user.BorderSizePixel = 5
  81. user.Position = UDim2.new(0, 41, 0, 133)
  82. user.Size = UDim2.new(0, 200, 0, 24)
  83. user.Font = Enum.Font.ArialBold
  84. user.FontSize = Enum.FontSize.Size14
  85. user.Text = "Username"
  86. user.TextSize = 14
  87. user.TextWrapped = true
  88. user.TextXAlignment = Enum.TextXAlignment.Left
  89.  
  90. pass.Name = "pass"
  91. pass.Parent = LoginFrame
  92. pass.BackgroundColor3 = Color3.new(0.921569, 0.0313726, 0)
  93. pass.BackgroundTransparency = 0.40000000596046
  94. pass.BorderColor3 = Color3.new(1, 0.0941177, 0)
  95. pass.BorderSizePixel = 5
  96. pass.Position = UDim2.new(0, 41, 0, 202)
  97. pass.Size = UDim2.new(0, 200, 0, 24)
  98. pass.Font = Enum.Font.ArialBold
  99. pass.FontSize = Enum.FontSize.Size14
  100. pass.Text = "Password"
  101. pass.TextSize = 14
  102. pass.TextWrapped = true
  103. pass.TextXAlignment = Enum.TextXAlignment.Left
  104.  
  105. login.Name = "login"
  106. login.Parent = LoginFrame
  107. login.BackgroundColor3 = Color3.new(1, 0.0235294, 0)
  108. login.BackgroundTransparency = 0.30000001192093
  109. login.BorderColor3 = Color3.new(0, 0, 0)
  110. login.BorderSizePixel = 3
  111. login.Position = UDim2.new(0, 41, 0, 265)
  112. login.Size = UDim2.new(0, 200, 0, 63)
  113. login.Font = Enum.Font.ArialBold
  114. login.FontSize = Enum.FontSize.Size32
  115. login.Text = "Submit"
  116. login.TextSize = 29
  117. login.TextWrapped = true
  118. login.MouseButton1Down:connect(function()
  119. if user.Text == "GoldenRobuxian" and pass.Text == "Tutorial" then
  120. LoginFrame.Visible = false
  121. MainFrame.Visible = true
  122. end
  123. end)
  124. MainFrame.Name = "MainFrame"
  125. MainFrame.Parent = Overkill
  126. MainFrame.Active = true
  127. MainFrame.BackgroundColor3 = Color3.new(0, 0, 0)
  128. MainFrame.BorderColor3 = Color3.new(1, 0.0235294, 0)
  129. MainFrame.BorderSizePixel = 4
  130. MainFrame.Draggable = true
  131. MainFrame.Selectable = true
  132. MainFrame.Size = UDim2.new(0, 501, 0, 358)
  133. MainFrame.Visible = false
  134.  
  135. bar2.Name = "bar2"
  136. bar2.Parent = MainFrame
  137. bar2.BackgroundColor3 = Color3.new(1, 0, 0)
  138. bar2.BorderColor3 = Color3.new(0.529412, 0.0509804, 0.0901961)
  139. bar2.BorderSizePixel = 3
  140. bar2.Size = UDim2.new(0, 500, 0, 22)
  141.  
  142. bar3.Name = "bar3"
  143. bar3.Parent = MainFrame
  144. bar3.BackgroundColor3 = Color3.new(0.533333, 0, 0)
  145. bar3.Position = UDim2.new(0, 0, 0, 23)
  146. bar3.Size = UDim2.new(0, 500, 0, 5)
  147.  
  148. title.Name = "title"
  149. title.Parent = MainFrame
  150. title.BackgroundColor3 = Color3.new(1, 0, 0.0470588)
  151. title.BackgroundTransparency = 1
  152. title.BorderColor3 = Color3.new(0.286275, 0.0117647, 0.0117647)
  153. title.BorderSizePixel = 4
  154. title.Position = UDim2.new(0, 150, 0, 30)
  155. title.Size = UDim2.new(0, 200, 0, 50)
  156. title.Font = Enum.Font.ArialBold
  157. title.FontSize = Enum.FontSize.Size36
  158. title.Text = "Overkill"
  159. title.TextColor3 = Color3.new(1, 0, 0.0117647)
  160. title.TextSize = 34
  161. title.TextStrokeColor3 = Color3.new(1, 0.0235294, 0)
  162. title.TextWrapped = true
  163.  
  164. credit.Name = "credit"
  165. credit.Parent = MainFrame
  166. credit.BackgroundColor3 = Color3.new(1, 1, 1)
  167. credit.BackgroundTransparency = 1
  168. credit.Position = UDim2.new(0, 0, 0, 334)
  169. credit.Size = UDim2.new(0, 170, 0, 20)
  170. credit.Font = Enum.Font.ArialBold
  171. credit.FontSize = Enum.FontSize.Size14
  172. credit.Text = "Made By GoldenRobuxian"
  173. credit.TextColor3 = Color3.new(1, 0, 0.0235294)
  174. credit.TextSize = 14
  175.  
  176. exebut.Name = "exebut"
  177. exebut.Parent = MainFrame
  178. exebut.BackgroundColor3 = Color3.new(0.584314, 0.0117647, 0.0705882)
  179. exebut.BorderColor3 = Color3.new(1, 0.0352941, 0)
  180. exebut.BorderSizePixel = 4
  181. exebut.Position = UDim2.new(0, 34, 0, 229)
  182. exebut.Size = UDim2.new(0, 200, 0, 50)
  183. exebut.Font = Enum.Font.ArialBold
  184. exebut.FontSize = Enum.FontSize.Size24
  185. exebut.Text = "Execution"
  186. exebut.TextColor3 = Color3.new(1, 0, 0.0235294)
  187. exebut.TextSize = 20
  188. exebut.MouseButton1Down:connect(function()
  189. MainFrame.Visible = false
  190. ExeFrame.Visible = true
  191. end)
  192. scriptbut.Name = "scriptbut"
  193. scriptbut.Parent = MainFrame
  194. scriptbut.BackgroundColor3 = Color3.new(0.584314, 0.0117647, 0.0705882)
  195. scriptbut.BorderColor3 = Color3.new(1, 0.0352941, 0)
  196. scriptbut.BorderSizePixel = 4
  197. scriptbut.Position = UDim2.new(0, 270, 0, 228)
  198. scriptbut.Size = UDim2.new(0, 200, 0, 50)
  199. scriptbut.Font = Enum.Font.ArialBold
  200. scriptbut.FontSize = Enum.FontSize.Size24
  201. scriptbut.Text = "Scripts"
  202. scriptbut.TextColor3 = Color3.new(1, 0, 0.0235294)
  203. scriptbut.TextSize = 20
  204. scriptbut.MouseButton1Down:connect(function()
  205. MainFrame.Visible = false
  206. ScriptFrame.Visible = true
  207. end)
  208. exitok.Name = "exitok"
  209. exitok.Parent = MainFrame
  210. exitok.BackgroundColor3 = Color3.new(0.584314, 0.0117647, 0.0705882)
  211. exitok.BorderColor3 = Color3.new(1, 0.0352941, 0)
  212. exitok.BorderSizePixel = 4
  213. exitok.Position = UDim2.new(0, 391, 0, 44)
  214. exitok.Size = UDim2.new(0, 93, 0, 50)
  215. exitok.Font = Enum.Font.ArialBold
  216. exitok.FontSize = Enum.FontSize.Size24
  217. exitok.Text = "Exit"
  218. exitok.TextColor3 = Color3.new(1, 0, 0.0235294)
  219. exitok.TextSize = 20
  220.  
  221. ExeFrame.Name = "ExeFrame"
  222. ExeFrame.Parent = Overkill
  223. ExeFrame.Active = true
  224. ExeFrame.BackgroundColor3 = Color3.new(0, 0, 0)
  225. ExeFrame.BorderColor3 = Color3.new(1, 0, 0.0588235)
  226. ExeFrame.BorderSizePixel = 4
  227. ExeFrame.Draggable = true
  228. ExeFrame.Position = UDim2.new(0, 27, 0, 64)
  229. ExeFrame.Selectable = true
  230. ExeFrame.Size = UDim2.new(0, 586, 0, 381)
  231. ExeFrame.Visible = false
  232.  
  233. bar4.Name = "bar4"
  234. bar4.Parent = ExeFrame
  235. bar4.BackgroundColor3 = Color3.new(1, 0, 0.0705882)
  236. bar4.Size = UDim2.new(0, 586, 0, 29)
  237.  
  238. ScrollingFrame.Parent = ExeFrame
  239. ScrollingFrame.BackgroundColor3 = Color3.new(0.47451, 0.47451, 0.47451)
  240. ScrollingFrame.Position = UDim2.new(0, 26, 0, 58)
  241. ScrollingFrame.Size = UDim2.new(0, 535, 0, 264)
  242. ScrollingFrame.CanvasSize = UDim2.new(0, 0, 200000000, 0)
  243. ScrollingFrame.ScrollBarThickness = 10
  244.  
  245. input.Name = "input"
  246. input.Parent = ScrollingFrame
  247. input.BackgroundColor3 = Color3.new(1, 1, 1)
  248. input.BackgroundTransparency = 1
  249. input.Size = UDim2.new(0, 519, 0, 587)
  250. input.Font = Enum.Font.ArialBold
  251. input.FontSize = Enum.FontSize.Size24
  252. input.Text = "print(\"Script Here\");"
  253. input.TextColor3 = Color3.new(1, 0.0117647, 0)
  254. input.TextSize = 20
  255. input.TextXAlignment = Enum.TextXAlignment.Left
  256. input.TextYAlignment = Enum.TextYAlignment.Top
  257.  
  258. execute.Name = "execute"
  259. execute.Parent = ExeFrame
  260. execute.BackgroundColor3 = Color3.new(0.670588, 0, 0.0156863)
  261. execute.BorderColor3 = Color3.new(1, 0, 0)
  262. execute.BorderSizePixel = 4
  263. execute.Position = UDim2.new(0, 138, 0, 332)
  264. execute.Size = UDim2.new(0, 131, 0, 34)
  265. execute.Font = Enum.Font.ArialBold
  266. execute.FontSize = Enum.FontSize.Size24
  267. execute.Text = "Execute"
  268. execute.TextColor3 = Color3.new(1, 0, 0.0352941)
  269. execute.TextSize = 23
  270. execute.TextWrapped = true
  271. execute.MouseButton1Down:connect(function()
  272. if input.Text == "ExitFrame();" then
  273. MainFrame.Visible = true
  274. ExeFrame.Visible = false
  275. print("Frame Exited")()
  276. else
  277. loadstring(input.Text)()
  278. end
  279. end)
  280. clear.Name = "clear"
  281. clear.Parent = ExeFrame
  282. clear.BackgroundColor3 = Color3.new(0.670588, 0, 0.0156863)
  283. clear.BorderColor3 = Color3.new(1, 0, 0)
  284. clear.BorderSizePixel = 4
  285. clear.Position = UDim2.new(0, 312, 0, 331)
  286. clear.Size = UDim2.new(0, 131, 0, 34)
  287. clear.Font = Enum.Font.ArialBold
  288. clear.FontSize = Enum.FontSize.Size24
  289. clear.Text = "Clear"
  290. clear.TextColor3 = Color3.new(1, 0, 0.0352941)
  291. clear.TextSize = 23
  292. clear.TextWrapped = true
  293. clear.MouseButton1Down:connect(function()
  294. input.Text = ""
  295. end)
  296.  
  297.  
  298. ScriptFrame.Name = "ScriptFrame"
  299. ScriptFrame.Parent = Overkill
  300. ScriptFrame.Active = true
  301. ScriptFrame.BackgroundColor3 = Color3.new(0, 0, 0)
  302. ScriptFrame.BorderColor3 = Color3.new(1, 0, 0.0117647)
  303. ScriptFrame.BorderSizePixel = 4
  304. ScriptFrame.Draggable = true
  305. ScriptFrame.Selectable = true
  306. ScriptFrame.Size = UDim2.new(0, 569, 0, 315)
  307. ScriptFrame.Visible = false
  308.  
  309. AnotherBar.Name = "AnotherBar"
  310. AnotherBar.Parent = ScriptFrame
  311. AnotherBar.BackgroundColor3 = Color3.new(1, 0, 0.0235294)
  312. AnotherBar.Size = UDim2.new(0, 569, 0, 19)
  313.  
  314. grab.Name = "grab"
  315. grab.Parent = ScriptFrame
  316. grab.BackgroundColor3 = Color3.new(0.588235, 0.0666667, 0)
  317. grab.BorderColor3 = Color3.new(1, 0, 0.0470588)
  318. grab.BorderSizePixel = 4
  319. grab.Position = UDim2.new(0, 51, 0, 41)
  320. grab.Size = UDim2.new(0, 188, 0, 52)
  321. grab.Font = Enum.Font.ArialBold
  322. grab.FontSize = Enum.FontSize.Size24
  323. grab.Text = "Grab Knife"
  324. grab.TextColor3 = Color3.new(1, 0.0117647, 0)
  325. grab.TextSize = 20
  326.  
  327. glock.Name = "glock"
  328. glock.Parent = ScriptFrame
  329. glock.BackgroundColor3 = Color3.new(0.588235, 0.0666667, 0)
  330. glock.BorderColor3 = Color3.new(1, 0, 0.0470588)
  331. glock.BorderSizePixel = 4
  332. glock.Position = UDim2.new(0, 315, 0, 38)
  333. glock.Size = UDim2.new(0, 188, 0, 52)
  334. glock.Font = Enum.Font.ArialBold
  335. glock.FontSize = Enum.FontSize.Size24
  336. glock.Text = "Glock"
  337. glock.TextColor3 = Color3.new(1, 0.0117647, 0)
  338. glock.TextSize = 20
  339.  
  340. tk.Name = "tk"
  341. tk.Parent = ScriptFrame
  342. tk.BackgroundColor3 = Color3.new(0.588235, 0.0666667, 0)
  343. tk.BorderColor3 = Color3.new(1, 0, 0.0470588)
  344. tk.BorderSizePixel = 4
  345. tk.Position = UDim2.new(0, 50, 0, 131)
  346. tk.Size = UDim2.new(0, 188, 0, 52)
  347. tk.Font = Enum.Font.ArialBold
  348. tk.FontSize = Enum.FontSize.Size24
  349. tk.Text = "Telekenisis"
  350. tk.TextColor3 = Color3.new(1, 0.0117647, 0)
  351. tk.TextSize = 20
  352.  
  353. proto.Name = "proto"
  354. proto.Parent = ScriptFrame
  355. proto.BackgroundColor3 = Color3.new(0.588235, 0.0666667, 0)
  356. proto.BorderColor3 = Color3.new(1, 0, 0.0470588)
  357. proto.BorderSizePixel = 4
  358. proto.Position = UDim2.new(0, 319, 0, 131)
  359. proto.Size = UDim2.new(0, 188, 0, 52)
  360. proto.Font = Enum.Font.ArialBold
  361. proto.FontSize = Enum.FontSize.Size24
  362. proto.Text = "Prototype"
  363. proto.TextColor3 = Color3.new(1, 0.0117647, 0)
  364. proto.TextSize = 20
  365.  
  366. sgui.Name = "sgui"
  367. sgui.Parent = ScriptFrame
  368. sgui.BackgroundColor3 = Color3.new(0.588235, 0.0666667, 0)
  369. sgui.BorderColor3 = Color3.new(1, 0, 0.0470588)
  370. sgui.BorderSizePixel = 4
  371. sgui.Position = UDim2.new(0, 47, 0, 226)
  372. sgui.Size = UDim2.new(0, 188, 0, 52)
  373. sgui.Font = Enum.Font.ArialBold
  374. sgui.FontSize = Enum.FontSize.Size24
  375. sgui.Text = "Sex Gui"
  376. sgui.TextColor3 = Color3.new(1, 0.0117647, 0)
  377. sgui.TextSize = 20
  378.  
  379. exitscripts.Name = "exitscripts"
  380. exitscripts.Parent = ScriptFrame
  381. exitscripts.BackgroundColor3 = Color3.new(0.588235, 0.0666667, 0)
  382. exitscripts.BorderColor3 = Color3.new(1, 0, 0.0470588)
  383. exitscripts.BorderSizePixel = 4
  384. exitscripts.Position = UDim2.new(0, 314, 0, 226)
  385. exitscripts.Size = UDim2.new(0, 188, 0, 52)
  386. exitscripts.Font = Enum.Font.ArialBold
  387. exitscripts.FontSize = Enum.FontSize.Size24
  388. exitscripts.Text = "Exit"
  389. exitscripts.TextColor3 = Color3.new(1, 0.0117647, 0)
  390. exitscripts.TextSize = 20
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement