Advertisement
Guest User

Btools Script made by : Bullet-

a guest
Feb 14th, 2020
7,736
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.72 KB | None | 0 0
  1. -- Made By : Bullet-X-Proof
  2.  
  3.  
  4. local Btools = Instance.new("ScreenGui")
  5. local Frame = Instance.new("Frame")
  6. local Button = Instance.new("TextButton")
  7. local TextLabel = Instance.new("TextLabel")
  8. local TextButton = Instance.new("TextButton")
  9.  
  10. Btools.Name = "Btools"
  11. Btools.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  12.  
  13. Frame.Parent = Btools
  14. Frame.BackgroundColor3 = Color3.fromRGB(13, 21, 21)
  15. Frame.Position = UDim2.new(0.00999999978, 0, 1, 0)
  16. Frame.Size = UDim2.new(0, 103, 0, 67)
  17.  
  18. Button.Name = "Button"
  19. Button.Parent = Frame
  20. Button.BackgroundColor3 = Color3.fromRGB(39, 61, 77)
  21. Button.BorderColor3 = Color3.fromRGB(27, 42, 53)
  22. Button.BorderSizePixel = 5
  23. Button.Position = UDim2.new(-1.1920929e-07, 0, 0.625074625, 0)
  24. Button.Size = UDim2.new(0, 103, 0, 25)
  25. Button.Font = Enum.Font.GothamBlack
  26. Button.Text = "BTools"
  27. Button.TextColor3 = Color3.fromRGB(0, 0, 0)
  28. Button.TextSize = 25.000
  29. Button.MouseButton1Down:connect(function()
  30. a = Instance.new("HopperBin", game.Players.LocalPlayer.Backpack)
  31. a.BinType = 2
  32. b = Instance.new("HopperBin", game.Players.LocalPlayer.Backpack)
  33. b.BinType = 3
  34. c = Instance.new("HopperBin", game.Players.LocalPlayer.Backpack)
  35. c.BinType = 4
  36. end)
  37.  
  38. TextLabel.Parent = Frame
  39. TextLabel.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  40. TextLabel.BackgroundTransparency = 1.000
  41. TextLabel.Position = UDim2.new(0.00970873795, 0, 0.134328365, 0)
  42. TextLabel.Size = UDim2.new(0, 102, 0, 20)
  43. TextLabel.Font = Enum.Font.GothamBlack
  44. TextLabel.Text = "By : Bullet-X-Proof"
  45. TextLabel.TextColor3 = Color3.fromRGB(255, 255, 255)
  46. TextLabel.TextSize = 10.000
  47. TextLabel.TextStrokeColor3 = Color3.fromRGB(85, 170, 255)
  48. TextLabel.TextStrokeTransparency = 3.000
  49.  
  50. TextButton.Parent = Frame
  51. TextButton.BackgroundColor3 = Color3.fromRGB(36, 36, 36)
  52. TextButton.Position = UDim2.new(0, 0, -0.208955228, 0)
  53. TextButton.Size = UDim2.new(0, 103, 0, 14)
  54. TextButton.Font = Enum.Font.GothamBlack
  55. TextButton.Text = "?"
  56. TextButton.TextColor3 = Color3.fromRGB(255, 255, 255)
  57. TextButton.TextSize = 22.000
  58.  
  59. -- Scripts:
  60.  
  61. local function PZTHXOV_fake_script() -- TextButton.Script
  62. local script = Instance.new('Script', TextButton)
  63.  
  64. wait(1)
  65.  
  66. local T = script.Parent
  67. local on=false
  68. local f=script.Parent.Parent.Parent.Frame
  69.  
  70. function click()
  71.  
  72. if on==false then
  73.  
  74. on=true
  75.  
  76. f:TweenPosition(UDim2.new(0.01, 0,0.87, 0),"Out","Sine",0.5) --Change to the position your gui will be when its open!
  77.  
  78. T.Text = "V"
  79.  
  80. else
  81.  
  82. on=false
  83.  
  84. f:TweenPosition(UDim2.new(0.01, 0,1, 0),"Out","Sine",0.5) --Change to the position your gui will be when its closed!
  85.  
  86. T.Text = "?"
  87.  
  88. end
  89.  
  90. end
  91.  
  92.  
  93.  
  94. script.Parent.MouseButton1Click:connect(click)
  95. end
  96. coroutine.wrap(PZTHXOV_fake_script)()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement