Advertisement
OfficialArponAG

OPBA Gui

Apr 6th, 2018
2,525
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.23 KB | None | 0 0
  1. print("opba gui loading....")
  2. local opba = Instance.new("ScreenGui")
  3. local body = Instance.new("Frame")
  4. local ctp = Instance.new("TextButton")
  5. local sdf = Instance.new("TextButton")
  6. local df = Instance.new("TextButton")
  7. opba.Name = "opba"
  8. opba.Parent = game.CoreGui
  9.  
  10. body.Name = "body"
  11. body.Parent = opba
  12. body.BackgroundColor3 = Color3.new(0.133333, 0.698039, 1)
  13. body.BorderColor3 = Color3.new(1, 1, 1)
  14. body.BorderSizePixel = 5
  15. body.Position = UDim2.new(0, 0, 0.360635698, 0)
  16. body.Size = UDim2.new(0, 137, 0, 157)
  17.  
  18. ctp.Name = "ctp"
  19. ctp.Parent = body
  20. ctp.BackgroundColor3 = Color3.new(1, 0, 1)
  21. ctp.BorderColor3 = Color3.new(1, 1, 1)
  22. ctp.BorderSizePixel = 3
  23. ctp.Position = UDim2.new(0, 0, 0.101213418, 0)
  24. ctp.Size = UDim2.new(0, 137, 0, 42)
  25. ctp.Font = Enum.Font.SciFi
  26. ctp.Text = " * TP Chest * "
  27. ctp.TextColor3 = Color3.new(1, 1, 1)
  28. ctp.TextScaled = true
  29. ctp.TextSize = 14
  30. ctp.TextWrapped = true
  31.  
  32. sdf.Name = "sdf"
  33. sdf.Parent = body
  34. sdf.BackgroundColor3 = Color3.new(0.333333, 1, 0)
  35. sdf.BorderColor3 = Color3.new(1, 1, 1)
  36. sdf.BorderSizePixel = 3
  37. sdf.Position = UDim2.new(0, 0, 0.368419677, 0)
  38. sdf.Size = UDim2.new(0, 137, 0, 42)
  39. sdf.Font = Enum.Font.SciFi
  40. sdf.Text = " * Scan DF * "
  41. sdf.TextColor3 = Color3.new(1, 1, 1)
  42. sdf.TextScaled = true
  43. sdf.TextSize = 14
  44. sdf.TextWrapped = true
  45.  
  46. df.Name = "df"
  47. df.Parent = body
  48. df.BackgroundColor3 = Color3.new(0, 0.333333, 0.498039)
  49. df.BorderColor3 = Color3.new(1, 1, 1)
  50. df.BorderSizePixel = 3
  51. df.Position = UDim2.new(0, 0, 0.634458303, 0)
  52. df.Size = UDim2.new(0, 137, 0, 42)
  53. df.Font = Enum.Font.SciFi
  54. df.Text = " * TP to DF * "
  55. df.TextColor3 = Color3.new(1, 1, 1)
  56. df.TextScaled = true
  57. df.TextSize = 14
  58. df.TextWrapped = true
  59.  
  60. ctp.MouseButton1Click:connect(function()
  61. chests = game.Workspace.Chests:GetChildren()
  62. plr = game.Players.LocalPlayer
  63. num = 1
  64. chests.CanCollide = false
  65. locaa = plr.Character.HumanoidRootPart.Position
  66.  
  67. while num <= #chests do
  68. plr.Character.HumanoidRootPart.CFrame = chests[num].CFrame
  69. print(num)
  70. num = num +1
  71. wait(1)
  72. end
  73. plr.Character:MoveTo(locaa)
  74. end)
  75. sdf.MouseButton1Click:connect(function()
  76. warn("Finding Devil Fruits...\n")
  77. local Database = {}
  78. local GetWorkspace = game.Workspace:GetDescendants()
  79. for i=1, #GetWorkspace do
  80. if GetWorkspace[i].ClassName == "Tool" and GetWorkspace[i].Parent == game.Workspace then
  81. table.insert(Database, GetWorkspace[i].Name.." | "..GetWorkspace[i].ClassName.." | "..GetWorkspace[i]:GetFullName())
  82. print(#Database..": ")
  83. warn("(Devil Fruit) Tool Name: "..GetWorkspace[i].Name.."\n")
  84. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = GetWorkspace[i].Handle.CFrame
  85. break
  86. end
  87. end
  88. warn("Scan Complete!\n")
  89. warn("Total Items Found: "..#Database)
  90.  
  91. for i=1, #Database do
  92. warn(i..": "..Database[i])
  93. end
  94. end)
  95. df.MouseButton1Click:connect(function()
  96. fruits = game.Workspace.FruitSpawnLocation:GetChildren()
  97. nums = 1
  98. plr = game.Players.LocalPlayer
  99.  
  100. while nums <= #fruits do
  101. plr.Character.HumanoidRootPart.CFrame = fruits[nums].CFrame
  102. print(nums)
  103. nums = nums +1
  104. wait(0.5)
  105. end
  106. end)
  107. Print(" ---Credits--- ")
  108. Print("ApolloTeddy (v3rmillion)")
  109. Print("OfficialArponAG (v3rmillion)")
  110. Print("------------ o ------------")
  111. Print("Gui loadded!! Enjoy!!")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement