Advertisement
Guest User

OPQ3 GUI

a guest
Sep 14th, 2018
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.61 KB | None | 0 0
  1. -- Farewell Infortality.
  2. -- Version: 2.82
  3. -- Instances:
  4. local OPQ3 = Instance.new("ScreenGui")
  5. local Background = Instance.new("Frame")
  6. local Dvider = Instance.new("Frame")
  7. local Top = Instance.new("Frame")
  8. local Top2 = Instance.new("Frame")
  9. local Credits = Instance.new("TextLabel")
  10. local second = Instance.new("TextButton")
  11. local first = Instance.new("TextButton")
  12. local Close = Instance.new("TextButton")
  13. --Properties:
  14. OPQ3.Name = "OPQ3"
  15. OPQ3.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  16.  
  17. Background.Name = "Background"
  18. Background.Parent = OPQ3
  19. Background.Active = true
  20. Background.BackgroundColor3 = Color3.new(0.0980392, 0.0980392, 0.0980392)
  21. Background.BorderColor3 = Color3.new(0.0980392, 0.0980392, 0.0980392)
  22. Background.ClipsDescendants = true
  23. Background.Position = UDim2.new(0.355450243, 0, 0.394422323, 0)
  24. Background.Size = UDim2.new(0, 293, 0, 230)
  25.  
  26. Dvider.Name = "Dvider"
  27. Dvider.Parent = Background
  28. Dvider.BackgroundColor3 = Color3.new(1, 1, 1)
  29. Dvider.Position = UDim2.new(0, 0, 0.533333361, 0)
  30. Dvider.Size = UDim2.new(0, 610, 0, 8)
  31.  
  32. Top.Name = "Top"
  33. Top.Parent = Background
  34. Top.BackgroundColor3 = Color3.new(0.0705882, 0.0705882, 0.0705882)
  35. Top.BorderColor3 = Color3.new(0.0705882, 0.0705882, 0.0705882)
  36. Top.Size = UDim2.new(0, 610, 0, 41)
  37.  
  38. Top2.Name = "Top2"
  39. Top2.Parent = Background
  40. Top2.BackgroundColor3 = Color3.new(0.0666667, 0.0666667, 0.0666667)
  41. Top2.BorderColor3 = Color3.new(0.0666667, 0.0666667, 0.0666667)
  42. Top2.Position = UDim2.new(0, 0, 0.0765705705, 0)
  43. Top2.Size = UDim2.new(0, 610, 0, 15)
  44.  
  45. Credits.Name = "Credits"
  46. Credits.Parent = Background
  47. Credits.BackgroundColor3 = Color3.new(1, 1, 1)
  48. Credits.BackgroundTransparency = 1
  49. Credits.Position = UDim2.new(0, 0, 0.923715413, 0)
  50. Credits.Size = UDim2.new(0, 174, 0, 18)
  51. Credits.Font = Enum.Font.SourceSans
  52. Credits.Text = "Made by: budderattack550 on V3rm"
  53. Credits.TextColor3 = Color3.new(0, 0, 0)
  54. Credits.TextScaled = true
  55. Credits.TextSize = 14
  56. Credits.TextStrokeColor3 = Color3.new(0.192157, 0.192157, 0.192157)
  57. Credits.TextWrapped = true
  58.  
  59. second.Name = "second"
  60. second.Parent = Background
  61. second.BackgroundColor3 = Color3.new(0, 0, 0)
  62. second.BackgroundTransparency = 0.5
  63. second.Position = UDim2.new(0.158591151, 0, 0.657312274, 0)
  64. second.Size = UDim2.new(0, 200, 0, 50)
  65. second.Font = Enum.Font.SourceSans
  66. second.Text = "Chest TP"
  67. second.TextColor3 = Color3.new(1, 0, 0)
  68. second.TextScaled = true
  69. second.TextSize = 14
  70. second.TextWrapped = true
  71.  
  72. first.Name = "first"
  73. first.Parent = Background
  74. first.BackgroundColor3 = Color3.new(0, 0, 0)
  75. first.BackgroundTransparency = 0.5
  76. first.Position = UDim2.new(0.158591151, 0, 0.230303019, 0)
  77. first.Size = UDim2.new(0, 200, 0, 50)
  78. first.Font = Enum.Font.SourceSans
  79. first.Text = "Df Finder"
  80. first.TextColor3 = Color3.new(1, 0, 0)
  81. first.TextScaled = true
  82. first.TextSize = 14
  83. first.TextWrapped = true
  84.  
  85. Close.Name = "Close"
  86. Close.Parent = Background
  87. Close.BackgroundColor3 = Color3.new(1, 1, 1)
  88. Close.BackgroundTransparency = 1
  89. Close.Position = UDim2.new(0.839400232, 0, 0, 0)
  90. Close.Size = UDim2.new(0, 48, 0, 40)
  91. Close.Font = Enum.Font.SourceSans
  92. Close.Text = "X"
  93. Close.TextColor3 = Color3.new(1, 0, 0)
  94. Close.TextScaled = true
  95. Close.TextSize = 14
  96. Close.TextWrapped = true
  97. -- Scripts:
  98.  
  99. -- close
  100. Close.MouseButton1Click:connect(function()
  101. game.Players.LocalPlayer.PlayerGui.OPQ3:destroy()
  102. end)
  103.  
  104. -- df finder
  105. first.MouseButton1Click:connect(function()
  106. loadstring(game:HttpGet("https://pastebin.com/raw/03hd8hYW", true))()
  107. end)
  108.  
  109. -- chests
  110.  
  111. second.MouseButton1Click:connect(function()
  112. loadstring(game:HttpGet("https://pastebin.com/raw/Uxg0hMYE", true))()
  113. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement