Advertisement
Pl3X

Blox Hunt Op script

Apr 1st, 2019
768
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.61 KB | None | 0 0
  1. --[[
  2. CREATED BY IITOXICITY ON V3RMILLION
  3. ]]
  4.  
  5.  
  6. local UT948N = Instance.new("ScreenGui")
  7. local MainFrame = Instance.new("Frame")
  8. local TopBar = Instance.new("Frame")
  9. local BottomBar = Instance.new("Frame")
  10. local Gamepasses = Instance.new("TextButton")
  11. local Visibility = Instance.new("TextButton")
  12. local Tpall = Instance.new("TextButton")
  13. local Hats = Instance.new("TextButton")
  14.  
  15. LP = game.Players.LocalPlayer
  16.  
  17.  
  18. UT948N.Name = "UT948N"
  19. UT948N.Parent = game.CoreGui
  20.  
  21. MainFrame.Name = "MainFrame"
  22. MainFrame.Parent = UT948N
  23. MainFrame.BackgroundColor3 = Color3.new(0, 0, 0)
  24. MainFrame.BackgroundTransparency = 0.5
  25. MainFrame.Position = UDim2.new(0.425293475, 0, 0.253921539, 0)
  26. MainFrame.Size = UDim2.new(0, 280, 0, 417)
  27.  
  28. TopBar.Name = "TopBar"
  29. TopBar.Parent = MainFrame
  30. TopBar.BackgroundColor3 = Color3.new(0, 0, 0)
  31. TopBar.Size = UDim2.new(0, 280, 0, 41)
  32.  
  33. BottomBar.Name = "BottomBar"
  34. BottomBar.Parent = MainFrame
  35. BottomBar.BackgroundColor3 = Color3.new(0, 0, 0)
  36. BottomBar.Position = UDim2.new(0, 0, 0.901678681, 0)
  37. BottomBar.Size = UDim2.new(0, 280, 0, 41)
  38.  
  39. Gamepasses.Name = "Gamepasses"
  40. Gamepasses.Parent = MainFrame
  41. Gamepasses.BackgroundColor3 = Color3.new(0, 0, 0)
  42. Gamepasses.Position = UDim2.new(0, 0, 0.141486809, 0)
  43. Gamepasses.Size = UDim2.new(0, 280, 0, 50)
  44. Gamepasses.Font = Enum.Font.SourceSans
  45. Gamepasses.Text = "All gamepasses"
  46. Gamepasses.TextColor3 = Color3.new(1, 1, 1)
  47. Gamepasses.TextScaled = true
  48. Gamepasses.TextSize = 14
  49. Gamepasses.TextWrapped = true
  50. Gamepasses.MouseButton1Click:Connect(function()
  51. for i,v in pairs(LP.Information.Gamepasses:GetChildren()) do
  52. if v then
  53. v.Value = true
  54. end
  55. end
  56. end)
  57.  
  58. Visibility.Name = "Visibility"
  59. Visibility.Parent = MainFrame
  60. Visibility.BackgroundColor3 = Color3.new(0, 0, 0)
  61. Visibility.Position = UDim2.new(0, 0, 0.306954443, 0)
  62. Visibility.Size = UDim2.new(0, 280, 0, 50)
  63. Visibility.Font = Enum.Font.SourceSans
  64. Visibility.Text = "Make hiders visible"
  65. Visibility.TextColor3 = Color3.new(1, 1, 1)
  66. Visibility.TextScaled = true
  67. Visibility.TextSize = 14
  68. Visibility.TextWrapped = true
  69. Visibility.MouseButton1Click:Connect(function()
  70. for i,v in pairs(game.Players:GetPlayers()) do
  71. if v then
  72. v.Character["Left Leg"].Transparency = 0
  73. v.Character["Right Leg"].Transparency = 0
  74. v.Character["Right Arm"].Transparency = 0
  75. v.Character["Left Arm"].Transparency = 0
  76. v.Character["Head"].Transparency = 0
  77. v.Character["Torso"].Transparency = 0
  78. end
  79. end
  80.  
  81.  
  82. end)
  83.  
  84. Tpall.Name = "Tpall"
  85. Tpall.Parent = MainFrame
  86. Tpall.BackgroundColor3 = Color3.new(0, 0, 0)
  87. Tpall.Position = UDim2.new(0, 0, 0.484412491, 0)
  88. Tpall.Size = UDim2.new(0, 280, 0, 50)
  89. Tpall.Font = Enum.Font.SourceSans
  90. Tpall.Text = "Tp all to yourself"
  91. Tpall.TextColor3 = Color3.new(1, 1, 1)
  92. Tpall.TextScaled = true
  93. Tpall.TextSize = 14
  94. Tpall.TextWrapped = true
  95. Tpall.MouseButton1Click:Connect(function()
  96. for i = 1,50 do
  97. for i,v in pairs(game.Players:GetChildren()) do
  98. if v then
  99. local Pos = LP.Character.HumanoidRootPart.Position
  100. local TPos = v.Character.HumanoidRootPart
  101.  
  102. TPos.CFrame = CFrame.new(Pos)
  103.  
  104. wait(0.1)
  105.  
  106. end
  107. end
  108. end
  109. end)
  110.  
  111. Hats.Name = "Hats"
  112. Hats.Parent = MainFrame
  113. Hats.BackgroundColor3 = Color3.new(0, 0, 0)
  114. Hats.Position = UDim2.new(0, 0, 0.681055188, 0)
  115. Hats.Size = UDim2.new(0, 280, 0, 50)
  116. Hats.Font = Enum.Font.SourceSans
  117. Hats.Text = "All Hats"
  118. Hats.TextColor3 = Color3.new(1, 1, 1)
  119. Hats.TextScaled = true
  120. Hats.TextSize = 14
  121. Hats.TextWrapped = true
  122. Hats.MouseButton1Click:Connect(function()
  123. for i,v in pairs(LP.Information.HatList:GetChildren()) do
  124. if v then
  125. v.Value = true
  126. end
  127. end
  128. end)
  129.  
  130. MainFrame.Active = true
  131. MainFrame.Selectable = true
  132. MainFrame.Draggable = true
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement