Advertisement
Guest User

Untitled

a guest
Aug 12th, 2017
987
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.60 KB | None | 0 0
  1. --This was made by I low/RayanChehabHAX, if you fucking edit the texts and go say Hey guys i made a gui! Then go fuck off lol.
  2. --Local
  3.  
  4. local MENU = Instance.new("ScreenGui")
  5. local GUI = Instance.new("Frame")
  6. local title = Instance.new("TextLabel")
  7. local tb = Instance.new("TextButton")
  8. local tr = Instance.new("TextButton")
  9. local truss = Instance.new("TextButton")
  10. local wedge = Instance.new("TextButton")
  11.  
  12. --Basics
  13.  
  14. MENU.Name = "BABFT"
  15. MENU.Parent = game.Players.LocalPlayer.PlayerGui
  16.  
  17. GUI.Name = "GUI"
  18. GUI.Parent = MENU
  19. GUI.Active = true
  20. GUI.Draggable = true
  21. GUI.Position = UDim2.new(0.009, 326, 0.412, -32)
  22. GUI.Size = UDim2.new(0, 142, 0, 279)
  23. GUI.Style = Enum.FrameStyle.RobloxRound
  24.  
  25. title.Name = "Title"
  26. title.Parent = GUI
  27. title.Position = UDim2.new(0.021, 5, -0.007, 0)
  28. title.Size = UDim2.new(0, 106, 0, 61)
  29. title.BackgroundTransparency = 1
  30. title.Text = "BABFT GUI by I low"
  31. title.TextSize = 18
  32. title.TextScaled = true
  33. title.FontSize = Enum.FontSize.Size18
  34. title.TextSize = 18
  35. title.Font = Enum.Font.Cartoon
  36. title.TextColor3 = Color3.new(255, 0, 0)
  37.  
  38. --Buttons
  39.  
  40. tb.Name = "TitaniumBlock"
  41. tb.Parent = GUI
  42. tb.Text = "Titanium Block"
  43. tb.Position = UDim2.new(0.12, -15, 0.412, -45)
  44. tb.Size = UDim2.new(0, 125, 0, 40)
  45. tb.Style = Enum.ButtonStyle.RobloxRoundDefaultButton
  46. tb.FontSize = Enum.FontSize.Size18
  47. tb.TextSize = 13
  48.  
  49. tr.Name = "TitaniumRod"
  50. tr.Parent = GUI
  51. tr.Text = "Titanium Rod"
  52. tr.Position = UDim2.new(0.12, -15, 0.412, 5)
  53. tr.Size = UDim2.new(0, 125, 0, 40)
  54. tr.Style = Enum.ButtonStyle.RobloxRoundDefaultButton
  55. tr.FontSize = Enum.FontSize.Size18
  56. tr.TextSize = 13
  57.  
  58. truss.Name = "Truss"
  59. truss.Parent = GUI
  60. truss.Text = "Truss"
  61. truss.Position = UDim2.new(0.12, -15, 0.412, 55)
  62. truss.Size = UDim2.new(0, 125, 0, 40)
  63. truss.Style = Enum.ButtonStyle.RobloxRoundDefaultButton
  64. truss.FontSize = Enum.FontSize.Size18
  65. truss.TextSize = 13
  66.  
  67. wedge.Name = "Wedge"
  68. wedge.Parent = GUI
  69. wedge.Text = "Wedge"
  70. wedge.Position = UDim2.new(0.12, -15, 0.412, 105)
  71. wedge.Size = UDim2.new(0, 125, 0, 40)
  72. wedge.Style = Enum.ButtonStyle.RobloxRoundDefaultButton
  73. wedge.FontSize = Enum.FontSize.Size18
  74. wedge.TextSize = 13
  75.  
  76. --Functions
  77.  
  78. tb.MouseButton1Click:connect(function()
  79. game.Players.LocalPlayer.Data.TitaniumBlock.Value = 2e9
  80. end)
  81.  
  82. tr.MouseButton1Click:connect(function()
  83. game.Players.LocalPlayer.Data.TitaniumRod.Value = 2e9
  84. end)
  85.  
  86. truss.MouseButton1Click:connect(function()
  87. game.Players.LocalPlayer.Data.Truss.Value = 2e9
  88. end)
  89.  
  90. wedge.MouseButton1Click:connect(function()
  91. game.Players.LocalPlayer.Data.Wedge.Value = 2e9
  92. end)
  93.  
  94.  
  95. --Printing
  96.  
  97. print("Welcome! This gui was made by I low!")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement