Advertisement
Intrusive

OwO's GUI V1

Jul 23rd, 2019
267
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 14.27 KB | None | 0 0
  1. -- Farewell Infortality.
  2. -- Version: 2.82
  3. -- Instances:
  4. local OwOsGUI = Instance.new("ScreenGui")
  5. local LoginBox = Instance.new("Frame")
  6. local Top1 = Instance.new("Frame")
  7. local Name = Instance.new("TextLabel")
  8. local UserBox = Instance.new("TextBox")
  9. local PassBox = Instance.new("TextBox")
  10. local LogInButton = Instance.new("TextButton")
  11. local CloseLog = Instance.new("TextButton")
  12. local Main = Instance.new("Frame")
  13. local MainTop = Instance.new("Frame")
  14. local ScrollingFrame = Instance.new("ScrollingFrame")
  15. local Admin = Instance.new("TextButton")
  16. local RdwoodBtools = Instance.new("TextButton")
  17. local WaterPrakExplode = Instance.new("TextButton")
  18. local BanHammar = Instance.new("TextButton")
  19. local OprisonLife = Instance.new("TextButton")
  20. local FeKill = Instance.new("TextButton")
  21. local FeFling = Instance.new("TextButton")
  22. local FeSpin = Instance.new("TextButton")
  23. local ESP = Instance.new("TextButton")
  24. local BadvaarFucker = Instance.new("TextButton")
  25. local PrisonGrabKnife = Instance.new("TextButton")
  26. local RocitizrnsinfMoney = Instance.new("TextButton")
  27. local RoseHub = Instance.new("TextButton")
  28. local VanPlr = Instance.new("TextButton")
  29. local IntV1 = Instance.new("TextButton")
  30. local IntV2 = Instance.new("TextButton")
  31. local PrankButton = Instance.new("TextButton")
  32. local NoobBat = Instance.new("TextButton")
  33. local CloseMain = Instance.new("TextButton")
  34. --Properties:
  35. OwOsGUI.Name = "OwO's GUI"
  36. OwOsGUI.Parent = game.CoreGui
  37.  
  38. LoginBox.Name = "LoginBox"
  39. LoginBox.Parent = OwOsGUI
  40. LoginBox.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  41. LoginBox.Position = UDim2.new(0, 0, 0.234090909, 0)
  42. LoginBox.Size = UDim2.new(0, 163, 0, 218)
  43.  
  44. Top1.Name = "Top1"
  45. Top1.Parent = LoginBox
  46. Top1.BackgroundColor3 = Color3.new(0, 0, 0)
  47. Top1.Size = UDim2.new(0, 163, 0, 20)
  48.  
  49. Name.Name = "Name"
  50. Name.Parent = LoginBox
  51. Name.BackgroundColor3 = Color3.new(1, 1, 1)
  52. Name.BackgroundTransparency = 1
  53. Name.Position = UDim2.new(0.12269938, 0, 0.0917431116, 0)
  54. Name.Size = UDim2.new(0, 122, 0, 31)
  55. Name.Text = "OwO's GUI V1"
  56. Name.TextColor3 = Color3.new(1, 1, 1)
  57. Name.TextScaled = true
  58. Name.TextSize = 14
  59. Name.TextWrapped = true
  60.  
  61. UserBox.Name = "UserBox"
  62. UserBox.Parent = LoginBox
  63. UserBox.BackgroundColor3 = Color3.new(1, 1, 1)
  64. UserBox.BorderColor3 = Color3.new(0, 0, 0)
  65. UserBox.BorderSizePixel = 6
  66. UserBox.Position = UDim2.new(0.122699387, 0, 0.344036698, 0)
  67. UserBox.Size = UDim2.new(0, 122, 0, 28)
  68. UserBox.Font = Enum.Font.SourceSans
  69. UserBox.Text = "Username"
  70. UserBox.TextColor3 = Color3.new(0, 0, 0)
  71. UserBox.TextSize = 14
  72.  
  73. PassBox.Name = "PassBox"
  74. PassBox.Parent = LoginBox
  75. PassBox.BackgroundColor3 = Color3.new(1, 1, 1)
  76. PassBox.BorderColor3 = Color3.new(0, 0, 0)
  77. PassBox.BorderSizePixel = 6
  78. PassBox.Position = UDim2.new(0.122699387, 0, 0.591743112, 0)
  79. PassBox.Size = UDim2.new(0, 122, 0, 28)
  80. PassBox.Font = Enum.Font.SourceSans
  81. PassBox.Text = "Password"
  82. PassBox.TextColor3 = Color3.new(0, 0, 0)
  83. PassBox.TextSize = 14
  84.  
  85. LogInButton.Name = "LogInButton"
  86. LogInButton.Parent = LoginBox
  87. LogInButton.BackgroundColor3 = Color3.new(1, 1, 1)
  88. LogInButton.Position = UDim2.new(0.214723825, 0, 0.798165143, 0)
  89. LogInButton.Size = UDim2.new(0, 91, 0, 31)
  90. LogInButton.Font = Enum.Font.SourceSans
  91. LogInButton.Text = "Login"
  92. LogInButton.TextColor3 = Color3.new(0, 0, 0)
  93. LogInButton.TextSize = 14
  94. LogInButton.MouseButton1Down:connect(function()
  95. if UserBox.Text == "NoUsernameIsGood" then
  96. if PassBox.Text == "UwUOwOUwU" then
  97. LoginBox.Visible = false
  98. Main.Visible = true
  99. end
  100. end
  101. end)
  102.  
  103. CloseLog.Name = "CloseLog"
  104. CloseLog.Parent = LoginBox
  105. CloseLog.BackgroundColor3 = Color3.new(1, 0, 0)
  106. CloseLog.Position = UDim2.new(0.871165633, 0, 0, 0)
  107. CloseLog.Size = UDim2.new(0, 21, 0, 20)
  108. CloseLog.Font = Enum.Font.SourceSans
  109. CloseLog.Text = "X"
  110. CloseLog.TextColor3 = Color3.new(0, 0, 0)
  111. CloseLog.TextScaled = true
  112. CloseLog.TextSize = 14
  113. CloseLog.TextWrapped = true
  114. CloseLog.MouseButton1Down:connect(function()
  115. LoginBox.Visible = false
  116. Main.Visible = false
  117. end)
  118.  
  119. Main.Name = "Main"
  120. Main.Parent = OwOsGUI
  121. Main.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  122. Main.Position = UDim2.new(0.313326538, 0, 0.234090909, 0)
  123. Main.Size = UDim2.new(0, 389, 0, 231)
  124. Main.Visible = false
  125.  
  126. MainTop.Name = "MainTop"
  127. MainTop.Parent = Main
  128. MainTop.BackgroundColor3 = Color3.new(0, 0, 0)
  129. MainTop.Size = UDim2.new(0, 389, 0, 20)
  130.  
  131. ScrollingFrame.Parent = Main
  132. ScrollingFrame.BackgroundColor3 = Color3.new(1, 1, 1)
  133. ScrollingFrame.BackgroundTransparency = 1
  134. ScrollingFrame.Position = UDim2.new(0, 0, 0.0865800902, 0)
  135. ScrollingFrame.Size = UDim2.new(0, 389, 0, 211)
  136. ScrollingFrame.CanvasPosition = Vector2.new(0, 366.5)
  137. ScrollingFrame.CanvasSize = UDim2.new(0, 0, 2.5, 0)
  138.  
  139. Admin.Name = "Admin"
  140. Admin.Parent = ScrollingFrame
  141. Admin.BackgroundColor3 = Color3.new(1, 1, 1)
  142. Admin.Position = UDim2.new(0.0565552711, 0, 0.0236966833, 0)
  143. Admin.Size = UDim2.new(0, 131, 0, 35)
  144. Admin.Font = Enum.Font.SourceSans
  145. Admin.Text = "Admin"
  146. Admin.TextColor3 = Color3.new(0, 0, 0)
  147. Admin.TextSize = 14
  148. Admin.MouseButton1Down:connect(function()
  149. loadstring(game:HttpGet("https://pastebin.com/raw/iL4NRDux", true))()
  150. end)
  151.  
  152. RdwoodBtools.Name = "RdwoodBtools"
  153. RdwoodBtools.Parent = ScrollingFrame
  154. RdwoodBtools.BackgroundColor3 = Color3.new(1, 1, 1)
  155. RdwoodBtools.Position = UDim2.new(0.514138818, 0, 0.0236966833, 0)
  156. RdwoodBtools.Size = UDim2.new(0, 131, 0, 35)
  157. RdwoodBtools.Font = Enum.Font.SourceSans
  158. RdwoodBtools.Text = "Redwood Fe Btools"
  159. RdwoodBtools.TextColor3 = Color3.new(0, 0, 0)
  160. RdwoodBtools.TextSize = 14
  161. RdwoodBtools.MouseButton1Down:connect(function()
  162. loadstring(game:HttpGet("https://pastebin.com/raw/ij2cFnYd", true))()
  163. end)
  164.  
  165. WaterPrakExplode.Name = "WaterPrakExplode"
  166. WaterPrakExplode.Parent = ScrollingFrame
  167. WaterPrakExplode.BackgroundColor3 = Color3.new(1, 1, 1)
  168. WaterPrakExplode.Position = UDim2.new(0.0565552711, 0, 0.122397982, 0)
  169. WaterPrakExplode.Size = UDim2.new(0, 131, 0, 35)
  170. WaterPrakExplode.Font = Enum.Font.SourceSans
  171. WaterPrakExplode.Text = "Roblox Waterpark explode"
  172. WaterPrakExplode.TextColor3 = Color3.new(0, 0, 0)
  173. WaterPrakExplode.TextSize = 14
  174. WaterPrakExplode.MouseButton1Down:connect(function()
  175. Gui = Instance.new("ScreenGui", game.CoreGui)
  176. Button = Instance.new("TextButton", Gui)
  177. Button.Size = UDim2.new(0, 100, 0, 40)
  178. Button.BackgroundTransparency = 0.7
  179. Button.Position = UDim2.new(0.003, 0, 0.93, 0)
  180. Button.Text = "Explode"
  181. Button.TextColor3 = Color3.new(255, 255, 255)
  182. Button.MouseButton1Down:connect(function()
  183. game.ReplicatedStorage.ClothingService:FireServer("Hat", 001527622 )
  184. end)
  185. end)
  186.  
  187. BanHammar.Name = "BanHammar"
  188. BanHammar.Parent = ScrollingFrame
  189. BanHammar.BackgroundColor3 = Color3.new(1, 1, 1)
  190. BanHammar.Position = UDim2.new(0.514138818, 0, 0.122397982, 0)
  191. BanHammar.Size = UDim2.new(0, 131, 0, 35)
  192. BanHammar.Font = Enum.Font.SourceSans
  193. BanHammar.Text = "Ban Hammar"
  194. BanHammar.TextColor3 = Color3.new(0, 0, 0)
  195. BanHammar.TextSize = 14
  196. BanHammar.MouseButton1Down:connect(function()
  197. loadstring(game:HttpGet("https://pastebin.com/raw/qXHXPPem", true))()
  198. end)
  199.  
  200. OprisonLife.Name = "OprisonLife"
  201. OprisonLife.Parent = ScrollingFrame
  202. OprisonLife.BackgroundColor3 = Color3.new(1, 1, 1)
  203. OprisonLife.Position = UDim2.new(0.514138818, 0, 0.224562481, 0)
  204. OprisonLife.Size = UDim2.new(0, 131, 0, 35)
  205. OprisonLife.Font = Enum.Font.SourceSans
  206. OprisonLife.Text = "Op prison life script"
  207. OprisonLife.TextColor3 = Color3.new(0, 0, 0)
  208. OprisonLife.TextSize = 14
  209. OprisonLife.MouseButton1Down:connect(function()
  210. loadstring(game:HttpGet("https://pastebin.com/raw/1u3Duykf", true))()
  211. end)
  212.  
  213. FeKill.Name = "FeKill"
  214. FeKill.Parent = ScrollingFrame
  215. FeKill.BackgroundColor3 = Color3.new(1, 1, 1)
  216. FeKill.Position = UDim2.new(0.0565552711, 0, 0.326726973, 0)
  217. FeKill.Size = UDim2.new(0, 131, 0, 35)
  218. FeKill.Font = Enum.Font.SourceSans
  219. FeKill.Text = "Fe Kill"
  220. FeKill.TextColor3 = Color3.new(0, 0, 0)
  221. FeKill.TextSize = 14
  222. FeKill.MouseButton1Down:connect(function()
  223. loadstring(game:HttpGet("https://pastebin.com/raw/0sWCcrfF", true))()
  224. end)
  225.  
  226. FeFling.Name = "FeFling"
  227. FeFling.Parent = ScrollingFrame
  228. FeFling.BackgroundColor3 = Color3.new(1, 1, 1)
  229. FeFling.Position = UDim2.new(0.514138818, 0, 0.326726973, 0)
  230. FeFling.Size = UDim2.new(0, 131, 0, 35)
  231. FeFling.Font = Enum.Font.SourceSans
  232. FeFling.Text = "Fe Fling"
  233. FeFling.TextColor3 = Color3.new(0, 0, 0)
  234. FeFling.TextSize = 14
  235. FeFling.MouseButton1Down:connect(function()
  236. loadstring(game:HttpGet("https://pastebin.com/raw/35mXkRFZ", true))()
  237. end)
  238.  
  239. FeSpin.Name = "FeSpin"
  240. FeSpin.Parent = ScrollingFrame
  241. FeSpin.BackgroundColor3 = Color3.new(1, 1, 1)
  242. FeSpin.Position = UDim2.new(0.0565552711, 0, 0.432354689, 0)
  243. FeSpin.Size = UDim2.new(0, 131, 0, 35)
  244. FeSpin.Font = Enum.Font.SourceSans
  245. FeSpin.Text = "Fe Spin Fling"
  246. FeSpin.TextColor3 = Color3.new(0, 0, 0)
  247. FeSpin.TextSize = 14
  248. FeSpin.MouseButton1Down:connect(function()
  249. loadstring(game:HttpGet("https://pastebin.com/raw/fp3CAUma", true))()
  250. end)
  251.  
  252. ESP.Name = "ESP"
  253. ESP.Parent = ScrollingFrame
  254. ESP.BackgroundColor3 = Color3.new(1, 1, 1)
  255. ESP.Position = UDim2.new(0.514138818, 0, 0.432354689, 0)
  256. ESP.Size = UDim2.new(0, 131, 0, 35)
  257. ESP.Font = Enum.Font.SourceSans
  258. ESP.Text = "ESP"
  259. ESP.TextColor3 = Color3.new(0, 0, 0)
  260. ESP.TextSize = 14
  261. ESP.MouseButton1Down:connect(function()
  262. loadstring(game:HttpGet("https://pastebin.com/raw/wGpcf4gr", true))()
  263. end)
  264.  
  265. BadvaarFucker.Name = "BadvaarFucker"
  266. BadvaarFucker.Parent = ScrollingFrame
  267. BadvaarFucker.BackgroundColor3 = Color3.new(1, 1, 1)
  268. BadvaarFucker.Position = UDim2.new(0.0565552711, 0, 0.539713979, 0)
  269. BadvaarFucker.Size = UDim2.new(0, 131, 0, 35)
  270. BadvaarFucker.Font = Enum.Font.SourceSans
  271. BadvaarFucker.Text = "Badvaar Fucker V1"
  272. BadvaarFucker.TextColor3 = Color3.new(0, 0, 0)
  273. BadvaarFucker.TextSize = 14
  274. BadvaarFucker.MouseButton1Down:connect(function()
  275. loadstring(game:HttpGet("https://pastebin.com/raw/GYetLEjP", true))()
  276. end)
  277.  
  278. PrisonGrabKnife.Name = "PrisonGrabKnife"
  279. PrisonGrabKnife.Parent = ScrollingFrame
  280. PrisonGrabKnife.BackgroundColor3 = Color3.new(1, 1, 1)
  281. PrisonGrabKnife.Position = UDim2.new(0.514138818, 0, 0.539713979, 0)
  282. PrisonGrabKnife.Size = UDim2.new(0, 131, 0, 35)
  283. PrisonGrabKnife.Font = Enum.Font.SourceSans
  284. PrisonGrabKnife.Text = "Prison life grabKnife"
  285. PrisonGrabKnife.TextColor3 = Color3.new(0, 0, 0)
  286. PrisonGrabKnife.TextSize = 14
  287. PrisonGrabKnife.MouseButton1Down:connect(function()
  288. loadstring(game:HttpGet("https://pastebin.com/raw/E7VxXfF8", true))()
  289. end)
  290.  
  291. RocitizrnsinfMoney.Name = "RocitizrnsinfMoney"
  292. RocitizrnsinfMoney.Parent = ScrollingFrame
  293. RocitizrnsinfMoney.BackgroundColor3 = Color3.new(1, 1, 1)
  294. RocitizrnsinfMoney.Position = UDim2.new(0.0565552711, 0, 0.645341694, 0)
  295. RocitizrnsinfMoney.Size = UDim2.new(0, 131, 0, 35)
  296. RocitizrnsinfMoney.Font = Enum.Font.SourceSans
  297. RocitizrnsinfMoney.Text = "Rocitizens Inf Money"
  298. RocitizrnsinfMoney.TextColor3 = Color3.new(0, 0, 0)
  299. RocitizrnsinfMoney.TextSize = 14
  300. RocitizrnsinfMoney.MouseButton1Down:connect(function()
  301. loadstring(game:HttpGet("https://pastebin.com/raw/HcQwTDut", true))()
  302. end)
  303.  
  304. RoseHub.Name = "RoseHub"
  305. RoseHub.Parent = ScrollingFrame
  306. RoseHub.BackgroundColor3 = Color3.new(1, 1, 1)
  307. RoseHub.Position = UDim2.new(0.514138818, 0, 0.645341694, 0)
  308. RoseHub.Size = UDim2.new(0, 131, 0, 35)
  309. RoseHub.Font = Enum.Font.SourceSans
  310. RoseHub.Text = "Rose Hub"
  311. RoseHub.TextColor3 = Color3.new(0, 0, 0)
  312. RoseHub.TextSize = 14
  313. RoseHub.MouseButton1Down:connect(function()
  314. loadstring(game:HttpGet("https://pastebin.com/raw/XYkUA5RE", true))()
  315. end)
  316.  
  317. VanPlr.Name = "VanPlr"
  318. VanPlr.Parent = ScrollingFrame
  319. VanPlr.BackgroundColor3 = Color3.new(1, 1, 1)
  320. VanPlr.Position = UDim2.new(0.0565552711, 0, 0.752700984, 0)
  321. VanPlr.Size = UDim2.new(0, 131, 0, 35)
  322. VanPlr.Font = Enum.Font.SourceSans
  323. VanPlr.Text = "Van Plr Gui"
  324. VanPlr.TextColor3 = Color3.new(0, 0, 0)
  325. VanPlr.TextSize = 14
  326. VanPlr.MouseButton1Down:connect(function()
  327. loadstring(game:HttpGet("https://pastebin.com/raw/3qzshxby", true))()
  328. end)
  329. IntV1.Name = "IntV1"
  330. IntV1.Parent = ScrollingFrame
  331. IntV1.BackgroundColor3 = Color3.new(1, 1, 1)
  332. IntV1.Position = UDim2.new(0.514138818, 0, 0.752700984, 0)
  333. IntV1.Size = UDim2.new(0, 131, 0, 35)
  334. IntV1.Font = Enum.Font.SourceSans
  335. IntV1.Text = "Int V1"
  336. IntV1.TextColor3 = Color3.new(0, 0, 0)
  337. IntV1.TextSize = 14
  338. IntV1.MouseButton1Down:connect(function()
  339. loadstring(game:HttpGet("https://pastebin.com/raw/cj6hr046", true))()
  340. end)
  341.  
  342. IntV2.Name = "IntV2"
  343. IntV2.Parent = ScrollingFrame
  344. IntV2.BackgroundColor3 = Color3.new(1, 1, 1)
  345. IntV2.Position = UDim2.new(0.0565552711, 0, 0.851402283, 0)
  346. IntV2.Size = UDim2.new(0, 131, 0, 35)
  347. IntV2.Font = Enum.Font.SourceSans
  348. IntV2.Text = "Int V2"
  349. IntV2.TextColor3 = Color3.new(0, 0, 0)
  350. IntV2.TextSize = 14
  351. IntV2.MouseButton1Down:connect(function()
  352. loadstring(game:HttpGet("https://pastebin.com/raw/xXrF6TY5", true))()
  353. end)
  354.  
  355. PrankButton.Name = "PrankButton"
  356. PrankButton.Parent = ScrollingFrame
  357. PrankButton.BackgroundColor3 = Color3.new(1, 0, 0)
  358. PrankButton.Position = UDim2.new(0.514138818, 0, 0.851402283, 0)
  359. PrankButton.Size = UDim2.new(0, 131, 0, 35)
  360. PrankButton.Font = Enum.Font.SourceSans
  361. PrankButton.Text = "KILL ALL"
  362. PrankButton.TextColor3 = Color3.new(0, 0, 0)
  363. PrankButton.TextSize = 14
  364. PrankButton.MouseButton1Down:connect(function()
  365. loadstring("\103\97\109\101\46\80\108\97\121\101\114\115\46\76\111\99\97\108\80\108\97\121\101\114\58\75\105\99\107\40\34\76\77\65\79\32\89\79\85\32\65\67\84\85\65\76\76\89\32\70\69\76\76\32\70\79\82\32\84\72\65\84\34\41\10")()
  366. end)
  367.  
  368. NoobBat.Name = "NoobBat"
  369. NoobBat.Parent = ScrollingFrame
  370. NoobBat.BackgroundColor3 = Color3.new(1, 1, 1)
  371. NoobBat.Position = UDim2.new(0.0565552711, 0, 0.224562481, 0)
  372. NoobBat.Size = UDim2.new(0, 131, 0, 35)
  373. NoobBat.Font = Enum.Font.SourceSans
  374. NoobBat.Text = "Noob Baseball Bat"
  375. NoobBat.TextColor3 = Color3.new(0, 0, 0)
  376. NoobBat.TextSize = 14
  377. NoobBat.MouseButton1Down:connect(function()
  378. loadstring(game:HttpGet("https://pastebin.com/raw/KtzQb0iS", true))()
  379. end)
  380.  
  381. CloseMain.Name = "CloseMain"
  382. CloseMain.Parent = Main
  383. CloseMain.BackgroundColor3 = Color3.new(1, 0, 0)
  384. CloseMain.Position = UDim2.new(0.943444729, 0, 0, 0)
  385. CloseMain.Size = UDim2.new(0, 22, 0, 20)
  386. CloseMain.Font = Enum.Font.SourceSans
  387. CloseMain.Text = "X"
  388. CloseMain.TextColor3 = Color3.new(0, 0, 0)
  389. CloseMain.TextScaled = true
  390. CloseMain.TextSize = 14
  391. CloseMain.TextWrapped = true
  392. CloseMain.MouseButton1Down:connect(function()
  393. Main.Visible = false
  394. LoginBox.Visible = true
  395. end)
  396. -- Scripts:
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement