Advertisement
POPOP1LIN

Btools Gui

Feb 13th, 2022
246
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.66 KB | None | 0 0
  1. -- Gui to RobloxScripts
  2. -- Version: 1.0
  3.  
  4. -- Instances:
  5.  
  6. local ScreenGui = Instance.new("ScreenGui")
  7. local Frame = Instance.new("Frame")
  8. local Btools = Instance.new("TextLabel")
  9. local BTOOLSBUTTON = Instance.new("TextButton")
  10.  
  11. --Properties:
  12.  
  13. ScreenGui.Parent = game.CoreGui
  14. ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  15.  
  16. Frame.Parent = ScreenGui
  17. Frame.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  18. Frame.BackgroundTransparency = 0.190
  19. Frame.Position = UDim2.new(0, 0, 0.707070708, 0)
  20. Frame.Size = UDim2.new(0, 209, 0, 145)
  21.  
  22. Btools.Name = "Btools"
  23. Btools.Parent = Frame
  24. Btools.BackgroundColor3 = Color3.fromRGB(235, 0, 0)
  25. Btools.BorderColor3 = Color3.fromRGB(1, 26, 255)
  26. Btools.Size = UDim2.new(0, 209, 0, 50)
  27. Btools.Font = Enum.Font.SciFi
  28. Btools.Text = "Btools V .1.0"
  29. Btools.TextColor3 = Color3.fromRGB(255, 255, 255)
  30. Btools.TextScaled = true
  31. Btools.TextSize = 44.000
  32. Btools.TextWrapped = true
  33.  
  34. BTOOLSBUTTON.Name = "BTOOLS BUTTON"
  35. BTOOLSBUTTON.Parent = Frame
  36. BTOOLSBUTTON.BackgroundColor3 = Color3.fromRGB(132, 0, 0)
  37. BTOOLSBUTTON.BorderColor3 = Color3.fromRGB(38, 0, 255)
  38. BTOOLSBUTTON.Position = UDim2.new(0.0813397095, 0, 0.475862086, 0)
  39. BTOOLSBUTTON.Size = UDim2.new(0, 175, 0, 50)
  40. BTOOLSBUTTON.Font = Enum.Font.Michroma
  41. BTOOLSBUTTON.Text = "Btools"
  42. BTOOLSBUTTON.TextColor3 = Color3.fromRGB(255, 255, 255)
  43. BTOOLSBUTTON.TextSize = 50.000
  44. BTOOLSBUTTON.MouseButton1Down:Connect(function(
  45. a = Instance.new("HopperBin", game.Players.LocalPlayer.Backpack)
  46. a.BinType = 2
  47. b = Instance.new("HopperBin", game.Players.LocalPlayer.Backpack)
  48. b.BinType = 3
  49. c = Instance.new("HopperBin", game.Players.LocalPlayer.Backpack)
  50. c.BinType = 4
  51. ))
  52. -- Scripts
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement