N4ri

BuildABoat

May 10th, 2020
623
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.79 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.  
  3. --Local
  4.  
  5.  
  6.  
  7. local MENU = Instance.new("ScreenGui")
  8.  
  9. local GUI = Instance.new("Frame")
  10.  
  11. local title = Instance.new("TextLabel")
  12.  
  13. local tb = Instance.new("TextButton")
  14.  
  15. local tr = Instance.new("TextButton")
  16.  
  17. local truss = Instance.new("TextButton")
  18.  
  19. local wedge = Instance.new("TextButton")
  20.  
  21.  
  22.  
  23. --Basics
  24.  
  25.  
  26.  
  27. MENU.Name = "BABFT"
  28.  
  29. MENU.Parent = game.Players.LocalPlayer.PlayerGui
  30.  
  31.  
  32.  
  33. GUI.Name = "GUI"
  34.  
  35. GUI.Parent = MENU
  36.  
  37. GUI.Active = true
  38.  
  39. GUI.Draggable = true
  40.  
  41. GUI.Position = UDim2.new(0.009, 326, 0.412, -32)
  42.  
  43. GUI.Size = UDim2.new(0, 142, 0, 279)
  44.  
  45. GUI.Style = Enum.FrameStyle.RobloxRound
  46.  
  47.  
  48.  
  49. title.Name = "Title"
  50.  
  51. title.Parent = GUI
  52.  
  53. title.Position = UDim2.new(0.021, 5, -0.007, 0)
  54.  
  55. title.Size = UDim2.new(0, 106, 0, 61)
  56.  
  57. title.BackgroundTransparency = 1
  58.  
  59. title.Text = "BABFT GUI by I low"
  60.  
  61. title.TextSize = 18
  62.  
  63. title.TextScaled = true
  64.  
  65. title.FontSize = Enum.FontSize.Size18
  66.  
  67. title.TextSize = 18
  68.  
  69. title.Font = Enum.Font.Cartoon
  70.  
  71. title.TextColor3 = Color3.new(255, 0, 0)
  72.  
  73.  
  74.  
  75. --Buttons
  76.  
  77.  
  78.  
  79. tb.Name = "TitaniumBlock"
  80.  
  81. tb.Parent = GUI
  82.  
  83. tb.Text = "Titanium Block"
  84.  
  85. tb.Position = UDim2.new(0.12, -15, 0.412, -45)
  86.  
  87. tb.Size = UDim2.new(0, 125, 0, 40)
  88.  
  89. tb.Style = Enum.ButtonStyle.RobloxRoundDefaultButton
  90.  
  91. tb.FontSize = Enum.FontSize.Size18
  92.  
  93. tb.TextSize = 13
  94.  
  95.  
  96.  
  97. tr.Name = "TitaniumRod"
  98.  
  99. tr.Parent = GUI
  100.  
  101. tr.Text = "Titanium Rod"
  102.  
  103. tr.Position = UDim2.new(0.12, -15, 0.412, 5)
  104.  
  105. tr.Size = UDim2.new(0, 125, 0, 40)
  106.  
  107. tr.Style = Enum.ButtonStyle.RobloxRoundDefaultButton
  108.  
  109. tr.FontSize = Enum.FontSize.Size18
  110.  
  111. tr.TextSize = 13
  112.  
  113.  
  114.  
  115. truss.Name = "Truss"
  116.  
  117. truss.Parent = GUI
  118.  
  119. truss.Text = "Truss"
  120.  
  121. truss.Position = UDim2.new(0.12, -15, 0.412, 55)
  122.  
  123. truss.Size = UDim2.new(0, 125, 0, 40)
  124.  
  125. truss.Style = Enum.ButtonStyle.RobloxRoundDefaultButton
  126.  
  127. truss.FontSize = Enum.FontSize.Size18
  128.  
  129. truss.TextSize = 13
  130.  
  131.  
  132.  
  133. wedge.Name = "Wedge"
  134.  
  135. wedge.Parent = GUI
  136.  
  137. wedge.Text = "Wedge"
  138.  
  139. wedge.Position = UDim2.new(0.12, -15, 0.412, 105)
  140.  
  141. wedge.Size = UDim2.new(0, 125, 0, 40)
  142.  
  143. wedge.Style = Enum.ButtonStyle.RobloxRoundDefaultButton
  144.  
  145. wedge.FontSize = Enum.FontSize.Size18
  146.  
  147. wedge.TextSize = 13
  148.  
  149.  
  150.  
  151. --Functions
  152.  
  153.  
  154.  
  155. tb.MouseButton1Click:connect(function()
  156.  
  157. game.Players.LocalPlayer.Data.TitaniumBlock.Value = 2e9
  158.  
  159. end)
  160.  
  161.  
  162.  
  163. tr.MouseButton1Click:connect(function()
  164.  
  165. game.Players.LocalPlayer.Data.TitaniumRod.Value = 2e9
  166.  
  167. end)
  168.  
  169.  
  170.  
  171. truss.MouseButton1Click:connect(function()
  172.  
  173. game.Players.LocalPlayer.Data.Truss.Value = 2e9
  174.  
  175. end)
  176.  
  177.  
  178.  
  179. wedge.MouseButton1Click:connect(function()
  180.  
  181. game.Players.LocalPlayer.Data.Wedge.Value = 2e9
  182.  
  183. end)
  184.  
  185.  
  186.  
  187.  
  188.  
  189. --Printing
  190.  
  191.  
  192.  
  193. print("Welcome! This gui was made by I low!")
Add Comment
Please, Sign In to add comment