Rorobis

OP Gui

Jan 25th, 2019
220
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 21.62 KB | None | 0 0
  1. -- How to get username and password: dm Rugg_66#9420
  2.  
  3. local OPGui = Instance.new("ScreenGui")
  4. local LoginFrame = Instance.new("Frame")
  5. local Title1 = Instance.new("TextLabel")
  6. local Exit1 = Instance.new("TextButton")
  7. local UsernameBox = Instance.new("TextBox")
  8. local PasswordBox = Instance.new("TextBox")
  9. local LoginButton = Instance.new("TextButton")
  10. local CheckingLabel = Instance.new("TextLabel")
  11. local MainFrame = Instance.new("Frame")
  12. local Title2 = Instance.new("TextLabel")
  13. local Exit2 = Instance.new("TextButton")
  14. local ExecutorButton = Instance.new("TextButton")
  15. local Button1 = Instance.new("TextButton")
  16. local Button2 = Instance.new("TextButton")
  17. local Button3 = Instance.new("TextButton")
  18. local Button4 = Instance.new("TextButton")
  19. local Button5 = Instance.new("TextButton")
  20. local ExecutorFrame = Instance.new("Frame")
  21. local Title3 = Instance.new("TextLabel")
  22. local Exit3 = Instance.new("TextButton")
  23. local Executor = Instance.new("ScrollingFrame")
  24. local Input = Instance.new("TextBox")
  25. local ExecuteButton = Instance.new("TextButton")
  26. local ClearButton = Instance.new("TextButton")
  27. local CreditsButton = Instance.new("TextButton")
  28. local CreditsFrame = Instance.new("Frame")
  29. local Title4 = Instance.new("TextLabel")
  30. local Credit1 = Instance.new("TextLabel")
  31. local TextLabel = Instance.new("TextLabel")
  32. local Credit2 = Instance.new("TextLabel")
  33. local TextLabel_2 = Instance.new("TextLabel")
  34. local CreditImage = Instance.new("ImageLabel")
  35. local CreditImage_2 = Instance.new("ImageLabel")
  36. local TextButton = Instance.new("TextButton")
  37.  
  38. OPGui.Name = "OPGui"
  39. OPGui.Parent = game.CoreGui
  40. OPGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  41.  
  42. LoginFrame.Name = "LoginFrame"
  43. LoginFrame.Parent = OPGui
  44. LoginFrame.Active = true
  45. LoginFrame.BackgroundColor3 = Color3.new(0, 0, 0)
  46. LoginFrame.BorderColor3 = Color3.new(1, 1, 1)
  47. LoginFrame.BorderSizePixel = 2
  48. LoginFrame.Position = UDim2.new(0.37648809, 0, 0.276519656, 0)
  49. LoginFrame.Size = UDim2.new(0, 331, 0, 374)
  50. LoginFrame.Draggable = true
  51.  
  52. Title1.Name = "Title1"
  53. Title1.Parent = LoginFrame
  54. Title1.BackgroundColor3 = Color3.new(0, 0, 0)
  55. Title1.BorderColor3 = Color3.new(1, 1, 1)
  56. Title1.BorderSizePixel = 2
  57. Title1.Size = UDim2.new(0, 331, 0, 50)
  58. Title1.Font = Enum.Font.Cartoon
  59. Title1.Text = "OP Gui"
  60. Title1.TextColor3 = Color3.new(1, 1, 1)
  61. Title1.TextScaled = true
  62. Title1.TextSize = 14
  63. Title1.TextWrapped = true
  64. Title1.TextXAlignment = Enum.TextXAlignment.Left
  65.  
  66. Exit1.Name = "Exit1"
  67. Exit1.Parent = LoginFrame
  68. Exit1.BackgroundColor3 = Color3.new(0, 0, 0)
  69. Exit1.BorderColor3 = Color3.new(1, 1, 1)
  70. Exit1.BorderSizePixel = 2
  71. Exit1.Position = UDim2.new(0.833836854, 0, 0, 0)
  72. Exit1.Size = UDim2.new(0, 55, 0, 50)
  73. Exit1.Font = Enum.Font.GothamBold
  74. Exit1.Text = "X"
  75. Exit1.TextColor3 = Color3.new(1, 1, 1)
  76. Exit1.TextScaled = true
  77. Exit1.TextSize = 14
  78. Exit1.TextWrapped = true
  79. Exit1.MouseButton1Click:connect(function()
  80. LoginFrame.Visible = false
  81. Exit1.Visible = true
  82. end)
  83.  
  84. UsernameBox.Name = "UsernameBox"
  85. UsernameBox.Parent = LoginFrame
  86. UsernameBox.BackgroundColor3 = Color3.new(0, 0, 0)
  87. UsernameBox.BorderColor3 = Color3.new(1, 1, 1)
  88. UsernameBox.BorderSizePixel = 2
  89. UsernameBox.Position = UDim2.new(0.0392749235, 0, 0.251336902, 0)
  90. UsernameBox.Size = UDim2.new(0, 304, 0, 50)
  91. UsernameBox.ClearTextOnFocus = false
  92. UsernameBox.Font = Enum.Font.Cartoon
  93. UsernameBox.Text = "Username"
  94. UsernameBox.TextColor3 = Color3.new(1, 1, 1)
  95. UsernameBox.TextScaled = true
  96. UsernameBox.TextSize = 14
  97. UsernameBox.TextWrapped = true
  98. UsernameBox.TextXAlignment = Enum.TextXAlignment.Left
  99.  
  100. PasswordBox.Name = "PasswordBox"
  101. PasswordBox.Parent = LoginFrame
  102. PasswordBox.BackgroundColor3 = Color3.new(0, 0, 0)
  103. PasswordBox.BorderColor3 = Color3.new(1, 1, 1)
  104. PasswordBox.BorderSizePixel = 2
  105. PasswordBox.Position = UDim2.new(0.0392749235, 0, 0.486631006, 0)
  106. PasswordBox.Size = UDim2.new(0, 304, 0, 50)
  107. PasswordBox.ClearTextOnFocus = false
  108. PasswordBox.Font = Enum.Font.Cartoon
  109. PasswordBox.Text = "Password"
  110. PasswordBox.TextColor3 = Color3.new(1, 1, 1)
  111. PasswordBox.TextScaled = true
  112. PasswordBox.TextSize = 14
  113. PasswordBox.TextWrapped = true
  114. PasswordBox.TextXAlignment = Enum.TextXAlignment.Left
  115.  
  116. LoginButton.Name = "LoginButton"
  117. LoginButton.Parent = LoginFrame
  118. LoginButton.BackgroundColor3 = Color3.new(0, 0, 0)
  119. LoginButton.BorderColor3 = Color3.new(1, 1, 1)
  120. LoginButton.BorderSizePixel = 2
  121. LoginButton.Position = UDim2.new(0.196374625, 0, 0.708556175, 0)
  122. LoginButton.Size = UDim2.new(0, 200, 0, 50)
  123. LoginButton.Font = Enum.Font.Cartoon
  124. LoginButton.Text = "Login"
  125. LoginButton.TextColor3 = Color3.new(1, 1, 1)
  126. LoginButton.TextScaled = true
  127. LoginButton.TextSize = 14
  128. LoginButton.TextWrapped = true
  129. LoginButton.MouseButton1Click:connect(function()
  130. if UsernameBox.Text == "Rugby" and PasswordBox.Text == "TotallySucks" then
  131. CheckingLabel.Visible = true
  132. CheckingLabel.Text = "Checking.."
  133. wait(1)
  134. CheckingLabel.Text = "Success!"
  135. wait(1)
  136. CheckingLabel.Visible = false
  137. wait(2)
  138. LoginFrame.Visible = false
  139. MainFrame.Visible = true
  140.  
  141. else
  142. CheckingLabel.Visible = true
  143. CheckingLabel.Text = "Checking.."
  144. wait(1)
  145. CheckingLabel.Text = "Incorrect username or password."
  146. wait(1)
  147. CheckingLabel.Visible = false
  148. end
  149. end)
  150.  
  151. CheckingLabel.Name = "CheckingLabel"
  152. CheckingLabel.Parent = LoginFrame
  153. CheckingLabel.BackgroundColor3 = Color3.new(0, 0, 0)
  154. CheckingLabel.Position = UDim2.new(0, 0, 0.93315506, 0)
  155. CheckingLabel.Size = UDim2.new(0, 331, 0, 25)
  156. CheckingLabel.Font = Enum.Font.Cartoon
  157. CheckingLabel.Text = ""
  158. CheckingLabel.TextColor3 = Color3.new(1, 1, 1)
  159. CheckingLabel.TextScaled = true
  160. CheckingLabel.TextSize = 14
  161. CheckingLabel.TextWrapped = true
  162. CheckingLabel.Visible = false
  163.  
  164. MainFrame.Name = "MainFrame"
  165. MainFrame.Parent = OPGui
  166. MainFrame.Active = true
  167. MainFrame.BackgroundColor3 = Color3.new(0, 0, 0)
  168. MainFrame.BorderColor3 = Color3.new(1, 1, 1)
  169. MainFrame.BorderSizePixel = 2
  170. MainFrame.Position = UDim2.new(0.324404776, 0, 0.241954714, 0)
  171. MainFrame.Size = UDim2.new(0, 521, 0, 413)
  172. MainFrame.Visible = false
  173. MainFrame.Draggable = true
  174.  
  175. Title2.Name = "Title2"
  176. Title2.Parent = MainFrame
  177. Title2.BackgroundColor3 = Color3.new(0.313726, 0.313726, 0.313726)
  178. Title2.BorderColor3 = Color3.new(1, 1, 1)
  179. Title2.BorderSizePixel = 2
  180. Title2.Size = UDim2.new(0, 521, 0, 50)
  181. Title2.Font = Enum.Font.Cartoon
  182. Title2.Text = "OP Gui"
  183. Title2.TextColor3 = Color3.new(0, 0, 0)
  184. Title2.TextSize = 70
  185. Title2.TextWrapped = true
  186. Title2.TextXAlignment = Enum.TextXAlignment.Left
  187.  
  188. Exit2.Name = "Exit2"
  189. Exit2.Parent = MainFrame
  190. Exit2.BackgroundColor3 = Color3.new(0.313726, 0.313726, 0.313726)
  191. Exit2.BorderColor3 = Color3.new(1, 1, 1)
  192. Exit2.BorderSizePixel = 2
  193. Exit2.Position = UDim2.new(0.892514408, 0, 0, 0)
  194. Exit2.Size = UDim2.new(0, 56, 0, 50)
  195. Exit2.Font = Enum.Font.GothamBold
  196. Exit2.Text = "X"
  197. Exit2.TextColor3 = Color3.new(0, 0, 0)
  198. Exit2.TextScaled = true
  199. Exit2.TextSize = 14
  200. Exit2.TextWrapped = true
  201. Exit2.MouseButton1Click:connect(function()
  202. MainFrame.Visible = false
  203. Exit2.Visible = true
  204. end)
  205.  
  206. ExecutorButton.Name = "ExecutorButton"
  207. ExecutorButton.Parent = MainFrame
  208. ExecutorButton.BackgroundColor3 = Color3.new(0.313726, 0.313726, 0.313726)
  209. ExecutorButton.BorderColor3 = Color3.new(1, 1, 1)
  210. ExecutorButton.BorderSizePixel = 2
  211. ExecutorButton.Position = UDim2.new(0.844529748, 0, 0.94430995, 0)
  212. ExecutorButton.Size = UDim2.new(0, 81, 0, 23)
  213. ExecutorButton.Font = Enum.Font.Cartoon
  214. ExecutorButton.Text = "Executor"
  215. ExecutorButton.TextColor3 = Color3.new(0, 0, 0)
  216. ExecutorButton.TextScaled = true
  217. ExecutorButton.TextSize = 14
  218. ExecutorButton.TextWrapped = true
  219. ExecutorButton.MouseButton1Click:connect(function()
  220. MainFrame.Visible = false
  221. ExecutorFrame.Visible = true
  222. end)
  223.  
  224. Button1.Name = "Button1"
  225. Button1.Parent = MainFrame
  226. Button1.BackgroundColor3 = Color3.new(0.313726, 0.313726, 0.313726)
  227. Button1.BorderColor3 = Color3.new(1, 1, 1)
  228. Button1.Position = UDim2.new(0.0403071046, 0, 0.157384992, 0)
  229. Button1.Size = UDim2.new(0, 74, 0, 50)
  230. Button1.Font = Enum.Font.Cartoon
  231. Button1.Text = "Fly"
  232. Button1.TextColor3 = Color3.new(0, 0, 0)
  233. Button1.TextScaled = true
  234. Button1.TextSize = 14
  235. Button1.TextWrapped = true
  236. Button1.MouseButton1Click:connect(function()
  237. repeat wait()
  238. until game.Players.LocalPlayer and game.Players.LocalPlayer.Character and game.Players.LocalPlayer.Character:findFirstChild("Torso") and game.Players.LocalPlayer.Character:findFirstChild("Humanoid")
  239. local mouse = game.Players.LocalPlayer:GetMouse()
  240. repeat wait() until mouse
  241. local plr = game.Players.LocalPlayer
  242. local torso = plr.Character.Torso
  243. local flying = true
  244. local deb = true
  245. local ctrl = {f = 0, b = 0, l = 0, r = 0}
  246. local lastctrl = {f = 0, b = 0, l = 0, r = 0}
  247. local maxspeed = 50
  248. local speed = 0
  249.  
  250. function Fly()
  251. local bg = Instance.new("BodyGyro", torso)
  252. bg.P = 9e4
  253. bg.maxTorque = Vector3.new(9e9, 9e9, 9e9)
  254. bg.cframe = torso.CFrame
  255. local bv = Instance.new("BodyVelocity", torso)
  256. bv.velocity = Vector3.new(0,0.1,0)
  257. bv.maxForce = Vector3.new(9e9, 9e9, 9e9)
  258. repeat wait()
  259. plr.Character.Humanoid.PlatformStand = true
  260. if ctrl.l + ctrl.r ~= 0 or ctrl.f + ctrl.b ~= 0 then
  261. speed = speed+.5+(speed/maxspeed)
  262. if speed > maxspeed then
  263. speed = maxspeed
  264. end
  265. elseif not (ctrl.l + ctrl.r ~= 0 or ctrl.f + ctrl.b ~= 0) and speed ~= 0 then
  266. speed = speed-1
  267. if speed < 0 then
  268. speed = 0
  269. end
  270. end
  271. if (ctrl.l + ctrl.r) ~= 0 or (ctrl.f + ctrl.b) ~= 0 then
  272. bv.velocity = ((game.Workspace.CurrentCamera.CoordinateFrame.lookVector * (ctrl.f+ctrl.b)) + ((game.Workspace.CurrentCamera.CoordinateFrame * CFrame.new(ctrl.l+ctrl.r,(ctrl.f+ctrl.b)*.2,0).p) - game.Workspace.CurrentCamera.CoordinateFrame.p))*speed
  273. lastctrl = {f = ctrl.f, b = ctrl.b, l = ctrl.l, r = ctrl.r}
  274. elseif (ctrl.l + ctrl.r) == 0 and (ctrl.f + ctrl.b) == 0 and speed ~= 0 then
  275. bv.velocity = ((game.Workspace.CurrentCamera.CoordinateFrame.lookVector * (lastctrl.f+lastctrl.b)) + ((game.Workspace.CurrentCamera.CoordinateFrame * CFrame.new(lastctrl.l+lastctrl.r,(lastctrl.f+lastctrl.b)*.2,0).p) - game.Workspace.CurrentCamera.CoordinateFrame.p))*speed
  276. else
  277. bv.velocity = Vector3.new(0,0.1,0)
  278. end
  279. bg.cframe = game.Workspace.CurrentCamera.CoordinateFrame * CFrame.Angles(-math.rad((ctrl.f+ctrl.b)*50*speed/maxspeed),0,0)
  280. until not flying
  281. ctrl = {f = 0, b = 0, l = 0, r = 0}
  282. lastctrl = {f = 0, b = 0, l = 0, r = 0}
  283. speed = 0
  284. bg:Destroy()
  285. bv:Destroy()
  286. plr.Character.Humanoid.PlatformStand = false
  287. end
  288. mouse.KeyDown:connect(function(key)
  289. if key:lower() == "e" then
  290. if flying then flying = false
  291. else
  292. flying = true
  293. Fly()
  294. end
  295. elseif key:lower() == "w" then
  296. ctrl.f = 1
  297. elseif key:lower() == "s" then
  298. ctrl.b = -1
  299. elseif key:lower() == "a" then
  300. ctrl.l = -1
  301. elseif key:lower() == "d" then
  302. ctrl.r = 1
  303. end
  304. end)
  305. mouse.KeyUp:connect(function(key)
  306. if key:lower() == "w" then
  307. ctrl.f = 0
  308. elseif key:lower() == "s" then
  309. ctrl.b = 0
  310. elseif key:lower() == "a" then
  311. ctrl.l = 0
  312. elseif key:lower() == "d" then
  313. ctrl.r = 0
  314. end
  315. end)
  316. Fly()
  317.  
  318. end)
  319.  
  320. Button2.Name = "Button2"
  321. Button2.Parent = MainFrame
  322. Button2.BackgroundColor3 = Color3.new(0.313726, 0.313726, 0.313726)
  323. Button2.BorderColor3 = Color3.new(1, 1, 1)
  324. Button2.Position = UDim2.new(0.234165058, 0, 0.157384992, 0)
  325. Button2.Size = UDim2.new(0, 74, 0, 50)
  326. Button2.Font = Enum.Font.Cartoon
  327. Button2.Text = "Noclip"
  328. Button2.TextColor3 = Color3.new(0, 0, 0)
  329. Button2.TextScaled = true
  330. Button2.TextSize = 14
  331. Button2.TextWrapped = true
  332. Button2.MouseButton1Click:connect(function()
  333. noclip = false
  334. game:GetService('RunService').Stepped:connect(function()
  335. if noclip then
  336. game.Players.LocalPlayer.Character.Humanoid:ChangeState(11)
  337. end
  338. end)
  339. plr = game.Players.LocalPlayer
  340. mouse = plr:GetMouse()
  341. mouse.KeyDown:connect(function(key)
  342.  
  343. if key == "e" then
  344. noclip = not noclip
  345. game.Players.LocalPlayer.Character.Humanoid:ChangeState(11)
  346. end
  347. end)
  348. print('Created by Rugg_66')
  349. end)
  350.  
  351. Button3.Name = "Button3"
  352. Button3.Parent = MainFrame
  353. Button3.BackgroundColor3 = Color3.new(0.313726, 0.313726, 0.313726)
  354. Button3.BorderColor3 = Color3.new(1, 1, 1)
  355. Button3.Position = UDim2.new(0.42802304, 0, 0.157384992, 0)
  356. Button3.Size = UDim2.new(0, 74, 0, 50)
  357. Button3.Font = Enum.Font.Cartoon
  358. Button3.Text = "Infinite Jump"
  359. Button3.TextColor3 = Color3.new(0, 0, 0)
  360. Button3.TextScaled = true
  361. Button3.TextSize = 14
  362. Button3.TextWrapped = true
  363. Button3.MouseButton1Click:connect(function()
  364. -- //~ F to toggle ~\\ --
  365.  
  366. _G.infinjump = true
  367.  
  368. local Player = game:GetService("Players").LocalPlayer
  369. local Mouse = Player:GetMouse()
  370. Mouse.KeyDown:connect(function(k)
  371. if _G.infinjump then
  372. if k:byte() == 32 then
  373. Humanoid = game:GetService("Players").LocalPlayer.Character:FindFirstChildOfClass("Humanoid")
  374. Humanoid:ChangeState("Jumping")
  375. wait(0.1)
  376. Humanoid:ChangeState("Seated")
  377. end
  378. end
  379. end)
  380.  
  381. local Player = game:GetService("Players").LocalPlayer
  382. local Mouse = Player:GetMouse()
  383. Mouse.KeyDown:connect(function(k)
  384. k = k:lower()
  385. if k == "f" then
  386. if _G.infinjump == true then
  387. _G.infinjump = false
  388. else
  389. _G.infinjump = true
  390. end
  391. end
  392. end)
  393. end)
  394.  
  395. Button4.Name = "Button4"
  396. Button4.Parent = MainFrame
  397. Button4.BackgroundColor3 = Color3.new(0.313726, 0.313726, 0.313726)
  398. Button4.BorderColor3 = Color3.new(1, 1, 1)
  399. Button4.Position = UDim2.new(0.625719786, 0, 0.157384992, 0)
  400. Button4.Size = UDim2.new(0, 74, 0, 50)
  401. Button4.Font = Enum.Font.Cartoon
  402. Button4.Text = "Walkspeed"
  403. Button4.TextColor3 = Color3.new(0, 0, 0)
  404. Button4.TextScaled = true
  405. Button4.TextSize = 14
  406. Button4.TextWrapped = true
  407. Button4.MouseButton1Click:connect(function()
  408. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 100
  409. end)
  410.  
  411. Button5.Name = "Button5"
  412. Button5.Parent = MainFrame
  413. Button5.BackgroundColor3 = Color3.new(0.313726, 0.313726, 0.313726)
  414. Button5.BorderColor3 = Color3.new(1, 1, 1)
  415. Button5.Position = UDim2.new(0.819577754, 0, 0.157384992, 0)
  416. Button5.Size = UDim2.new(0, 74, 0, 50)
  417. Button5.Font = Enum.Font.Cartoon
  418. Button5.Text = "Jump Power"
  419. Button5.TextColor3 = Color3.new(0, 0, 0)
  420. Button5.TextScaled = true
  421. Button5.TextSize = 14
  422. Button5.TextWrapped = true
  423. Button5.MouseButton1Click:connect(function()
  424. game.Players.LocalPlayer.Character.Humanoid.JumpPower = 200
  425. end)
  426.  
  427. ExecutorFrame.Name = "ExecutorFrame"
  428. ExecutorFrame.Parent = OPGui
  429. ExecutorFrame.Active = true
  430. ExecutorFrame.BackgroundColor3 = Color3.new(0, 0, 0)
  431. ExecutorFrame.BorderColor3 = Color3.new(1, 1, 1)
  432. ExecutorFrame.BorderSizePixel = 2
  433. ExecutorFrame.Position = UDim2.new(0.323660731, 0, 0.241954714, 0)
  434. ExecutorFrame.Size = UDim2.new(0, 522, 0, 413)
  435. ExecutorFrame.Visible = false
  436. ExecutorFrame.Draggable = true
  437.  
  438. Title3.Name = "Title3"
  439. Title3.Parent = ExecutorFrame
  440. Title3.BackgroundColor3 = Color3.new(0.313726, 0.313726, 0.313726)
  441. Title3.BorderColor3 = Color3.new(1, 1, 1)
  442. Title3.BorderSizePixel = 2
  443. Title3.Size = UDim2.new(0, 522, 0, 50)
  444. Title3.Font = Enum.Font.Cartoon
  445. Title3.Text = "OP Executor"
  446. Title3.TextColor3 = Color3.new(0, 0, 0)
  447. Title3.TextScaled = true
  448. Title3.TextSize = 14
  449. Title3.TextWrapped = true
  450. Title3.TextXAlignment = Enum.TextXAlignment.Left
  451.  
  452. Exit3.Name = "Exit3"
  453. Exit3.Parent = ExecutorFrame
  454. Exit3.BackgroundColor3 = Color3.new(0.313726, 0.313726, 0.313726)
  455. Exit3.BorderColor3 = Color3.new(1, 1, 1)
  456. Exit3.BorderSizePixel = 2
  457. Exit3.Position = UDim2.new(0.892720282, 0, 0, 0)
  458. Exit3.Size = UDim2.new(0, 56, 0, 50)
  459. Exit3.Font = Enum.Font.GothamBold
  460. Exit3.Text = "X"
  461. Exit3.TextColor3 = Color3.new(0, 0, 0)
  462. Exit3.TextScaled = true
  463. Exit3.TextSize = 14
  464. Exit3.TextWrapped = true
  465. Exit3.MouseButton1Click:connect(function()
  466. ExecutorFrame.Visible = false
  467. MainFrame.Visible = true
  468. end)
  469.  
  470. Executor.Parent = ExecutorFrame
  471. Executor.Active = true
  472. Executor.BackgroundColor3 = Color3.new(0.313726, 0.313726, 0.313726)
  473. Executor.BorderColor3 = Color3.new(1, 1, 1)
  474. Executor.BorderSizePixel = 2
  475. Executor.Position = UDim2.new(0.0325670503, 0, 0.164648905, 0)
  476. Executor.Size = UDim2.new(0, 489, 0, 280)
  477. Executor.CanvasSize = UDim2.new(0, 0, 100000, 0)
  478. Executor.ScrollBarThickness = 10
  479.  
  480. Input.Name = "Input"
  481. Input.Parent = Executor
  482. Input.BackgroundColor3 = Color3.new(0.313726, 0.313726, 0.313726)
  483. Input.BorderColor3 = Color3.new(1, 1, 1)
  484. Input.BorderSizePixel = 2
  485. Input.Size = UDim2.new(0, 477, 0, 99999)
  486. Input.ClearTextOnFocus = false
  487. Input.Font = Enum.Font.SourceSans
  488. Input.MultiLine = true
  489. Input.Text = "--Script Here"
  490. Input.TextColor3 = Color3.new(0, 0, 0)
  491. Input.TextSize = 20
  492. Input.TextXAlignment = Enum.TextXAlignment.Left
  493. Input.TextYAlignment = Enum.TextYAlignment.Top
  494.  
  495. ExecuteButton.Name = "ExecuteButton"
  496. ExecuteButton.Parent = ExecutorFrame
  497. ExecuteButton.BackgroundColor3 = Color3.new(0.313726, 0.313726, 0.313726)
  498. ExecuteButton.BorderColor3 = Color3.new(1, 1, 1)
  499. ExecuteButton.BorderSizePixel = 2
  500. ExecuteButton.Position = UDim2.new(0.0325670503, 0, 0.876513302, 0)
  501. ExecuteButton.Size = UDim2.new(0, 115, 0, 40)
  502. ExecuteButton.Font = Enum.Font.Cartoon
  503. ExecuteButton.Text = "Execute"
  504. ExecuteButton.TextColor3 = Color3.new(0, 0, 0)
  505. ExecuteButton.TextScaled = true
  506. ExecuteButton.TextSize = 14
  507. ExecuteButton.TextWrapped = true
  508. ExecuteButton.MouseButton1Click:connect(function()
  509. loadstring(Input.Text)
  510. end)
  511.  
  512. ClearButton.Name = "ClearButton"
  513. ClearButton.Parent = ExecutorFrame
  514. ClearButton.BackgroundColor3 = Color3.new(0.313726, 0.313726, 0.313726)
  515. ClearButton.BorderColor3 = Color3.new(1, 1, 1)
  516. ClearButton.BorderSizePixel = 2
  517. ClearButton.Position = UDim2.new(0.291187733, 0, 0.876513302, 0)
  518. ClearButton.Size = UDim2.new(0, 115, 0, 40)
  519. ClearButton.Font = Enum.Font.Cartoon
  520. ClearButton.Text = "Clear"
  521. ClearButton.TextColor3 = Color3.new(0, 0, 0)
  522. ClearButton.TextScaled = true
  523. ClearButton.TextSize = 14
  524. ClearButton.TextWrapped = true
  525. ClearButton.MouseButton1Click:connect(function()
  526. Input.Text = ""
  527. end)
  528.  
  529. CreditsButton.Name = "CreditsButton"
  530. CreditsButton.Parent = ExecutorFrame
  531. CreditsButton.BackgroundColor3 = Color3.new(0.313726, 0.313726, 0.313726)
  532. CreditsButton.BorderColor3 = Color3.new(1, 1, 1)
  533. CreditsButton.BorderSizePixel = 2
  534. CreditsButton.Position = UDim2.new(0.78927201, 0, 0.929782093, 0)
  535. CreditsButton.Size = UDim2.new(0, 110, 0, 28)
  536. CreditsButton.Font = Enum.Font.Cartoon
  537. CreditsButton.Text = "Credits"
  538. CreditsButton.TextColor3 = Color3.new(0, 0, 0)
  539. CreditsButton.TextScaled = true
  540. CreditsButton.TextSize = 14
  541. CreditsButton.TextWrapped = true
  542. CreditsButton.MouseButton1Click:connect(function()
  543. ExecutorFrame.Visible = false
  544. CreditsFrame.Visible = true
  545. end)
  546.  
  547. CreditsFrame.Name = "CreditsFrame"
  548. CreditsFrame.Parent = OPGui
  549. CreditsFrame.Active = true
  550. CreditsFrame.BackgroundColor3 = Color3.new(0, 0, 0)
  551. CreditsFrame.BorderColor3 = Color3.new(1, 1, 1)
  552. CreditsFrame.BorderSizePixel = 2
  553. CreditsFrame.Position = UDim2.new(0.323660702, 0, 0.241954714, 0)
  554. CreditsFrame.Size = UDim2.new(0, 522, 0, 412)
  555. CreditsFrame.Visible = false
  556. CreditsFrame.Draggable = true
  557.  
  558. Title4.Name = "Title4"
  559. Title4.Parent = CreditsFrame
  560. Title4.BackgroundColor3 = Color3.new(0.313726, 0.313726, 0.313726)
  561. Title4.BorderColor3 = Color3.new(1, 1, 1)
  562. Title4.BorderSizePixel = 2
  563. Title4.Size = UDim2.new(0, 522, 0, 50)
  564. Title4.Font = Enum.Font.Cartoon
  565. Title4.Text = "OP Gui Credits"
  566. Title4.TextColor3 = Color3.new(0, 0, 0)
  567. Title4.TextScaled = true
  568. Title4.TextSize = 14
  569. Title4.TextWrapped = true
  570. Title4.TextXAlignment = Enum.TextXAlignment.Left
  571.  
  572. Credit1.Name = "Credit1"
  573. Credit1.Parent = CreditsFrame
  574. Credit1.BackgroundColor3 = Color3.new(1, 1, 1)
  575. Credit1.Position = UDim2.new(0.0478927195, 0, 0.16504854, 0)
  576. Credit1.Size = UDim2.new(0, 212, 0, 30)
  577. Credit1.Font = Enum.Font.Cartoon
  578. Credit1.Text = "Rugg_66#9420"
  579. Credit1.TextColor3 = Color3.new(0, 0, 0)
  580. Credit1.TextScaled = true
  581. Credit1.TextSize = 14
  582. Credit1.TextWrapped = true
  583.  
  584. TextLabel.Parent = Credit1
  585. TextLabel.BackgroundColor3 = Color3.new(1, 1, 1)
  586. TextLabel.Position = UDim2.new(0, 0, 9.33333302, 0)
  587. TextLabel.Size = UDim2.new(0, 212, 0, 32)
  588. TextLabel.Font = Enum.Font.Cartoon
  589. TextLabel.Text = "Main Developer"
  590. TextLabel.TextColor3 = Color3.new(0, 0, 0)
  591. TextLabel.TextScaled = true
  592. TextLabel.TextSize = 14
  593. TextLabel.TextWrapped = true
  594.  
  595. Credit2.Name = "Credit2"
  596. Credit2.Parent = CreditsFrame
  597. Credit2.BackgroundColor3 = Color3.new(1, 1, 1)
  598. Credit2.Position = UDim2.new(0.524904191, 0, 0.16504854, 0)
  599. Credit2.Size = UDim2.new(0, 212, 0, 30)
  600. Credit2.Font = Enum.Font.Cartoon
  601. Credit2.Text = "LithuanianBoi#1940"
  602. Credit2.TextColor3 = Color3.new(0, 0, 0)
  603. Credit2.TextScaled = true
  604. Credit2.TextSize = 14
  605. Credit2.TextWrapped = true
  606.  
  607. TextLabel_2.Parent = Credit2
  608. TextLabel_2.BackgroundColor3 = Color3.new(1, 1, 1)
  609. TextLabel_2.Position = UDim2.new(0, 0, 9.33333302, 0)
  610. TextLabel_2.Size = UDim2.new(0, 212, 0, 32)
  611. TextLabel_2.Font = Enum.Font.Cartoon
  612. TextLabel_2.Text = "Head Developer"
  613. TextLabel_2.TextColor3 = Color3.new(0, 0, 0)
  614. TextLabel_2.TextScaled = true
  615. TextLabel_2.TextSize = 14
  616. TextLabel_2.TextWrapped = true
  617.  
  618. CreditImage.Name = "CreditImage"
  619. CreditImage.Parent = CreditsFrame
  620. CreditImage.BackgroundColor3 = Color3.new(1, 1, 1)
  621. CreditImage.Position = UDim2.new(0.0478927195, 0, 0.276699036, 0)
  622. CreditImage.Size = UDim2.new(0, 212, 0, 212)
  623. CreditImage.Image = "rbxassetid://2780943882"
  624.  
  625. CreditImage_2.Name = "CreditImage"
  626. CreditImage_2.Parent = CreditsFrame
  627. CreditImage_2.BackgroundColor3 = Color3.new(1, 1, 1)
  628. CreditImage_2.Position = UDim2.new(0.524904251, 0, 0.276699036, 0)
  629. CreditImage_2.Size = UDim2.new(0, 212, 0, 212)
  630. CreditImage_2.Image = "rbxassetid://2780982588"
  631.  
  632. TextButton.Parent = CreditsFrame
  633. TextButton.BackgroundColor3 = Color3.new(0.313726, 0.313726, 0.313726)
  634. TextButton.BorderColor3 = Color3.new(1, 1, 1)
  635. TextButton.BorderSizePixel = 2
  636. TextButton.Position = UDim2.new(0.892720282, 0, 0, 0)
  637. TextButton.Size = UDim2.new(0, 56, 0, 50)
  638. TextButton.Font = Enum.Font.GothamBold
  639. TextButton.Text = "X"
  640. TextButton.TextColor3 = Color3.new(0, 0, 0)
  641. TextButton.TextScaled = true
  642. TextButton.TextSize = 14
  643. TextButton.TextWrapped = true
  644. TextButton.MouseButton1Click:connect(function()
  645. CreditsFrame.Visible = false
  646. ExecutorFrame.Visible = true
  647. end)
Advertisement
Add Comment
Please, Sign In to add comment