Advertisement
forgetfuldingo

BuildABoatFinal

Aug 9th, 2020
45
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.59 KB | None | 0 0
  1. -- Instances:
  2.  
  3.  
  4.  
  5. local ScreenGui = Instance.new("ScreenGui")
  6.  
  7. local GUIBody = Instance.new("Frame")
  8.  
  9. local ImageLabel = Instance.new("ImageLabel")
  10.  
  11. local JailShitter = Instance.new("TextButton")
  12.  
  13. local AutoRob = Instance.new("TextButton")
  14.  
  15. local Close = Instance.new("TextButton")
  16.  
  17. local OpenMain = Instance.new("Frame")
  18.  
  19. local OpenButton = Instance.new("TextButton")
  20.  
  21.  
  22.  
  23. --Properties:
  24.  
  25.  
  26.  
  27. ScreenGui.Parent = game.CoreGui
  28.  
  29.  
  30.  
  31. GUIBody.Name = "GUIBody"
  32.  
  33. GUIBody.Parent = ScreenGui
  34.  
  35. GUIBody.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  36.  
  37. GUIBody.Position = UDim2.new(0.247040257, 0, 0.205159709, 0)
  38.  
  39. GUIBody.Size = UDim2.new(0, 640, 0, 480)
  40.  
  41. GUIBody.Active = true
  42.  
  43. GUIBody.Draggable = true
  44.  
  45.  
  46.  
  47. ImageLabel.Parent = GUIBody
  48.  
  49. ImageLabel.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  50.  
  51. ImageLabel.Size = UDim2.new(0, 640, 0, 480)
  52.  
  53. ImageLabel.Image = "rbxassetid://5516674150"
  54.  
  55.  
  56.  
  57. JailShitter.Name = "JailShitter"
  58.  
  59. JailShitter.Parent = GUIBody
  60.  
  61. JailShitter.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  62.  
  63. JailShitter.Position = UDim2.new(0.34375, 0, 0.208333328, 0)
  64.  
  65. JailShitter.Size = UDim2.new(0, 200, 0, 50)
  66.  
  67. JailShitter.Font = Enum.Font.ArialBold
  68.  
  69. JailShitter.Text = "Auto Farm"
  70.  
  71. JailShitter.TextColor3 = Color3.fromRGB(0, 0, 0)
  72.  
  73. JailShitter.TextSize = 25.000
  74.  
  75. JailShitter.MouseButton1Down:connect(function()JailShitter.BackgroundColor3 = Color3.fromRGB(0, 255, 0)
  76.  
  77. end)
  78.  
  79. JailShitter.TextWrapped = true
  80.  
  81. JailShitter.MouseButton1Down:connect(function()
  82.  
  83. -- Below this is script to the auto farm
  84.  
  85. function Tween(time,pos)
  86.  
  87. pcall(function()
  88.  
  89. workspace.Gravity = 0
  90.  
  91. game:GetService("TweenService"):Create(game.Players.LocalPlayer.Character.HumanoidRootPart, TweenInfo.new(time, Enum.EasingStyle.Linear), {CFrame = pos}):Play() wait(time)
  92.  
  93. workspace.Gravity = 196.19999694824
  94.  
  95. end)
  96.  
  97. end
  98.  
  99. function Repeat()
  100.  
  101. Tween(1,game:GetService("Workspace").BoatStages.NormalStages.CaveStage1.DarknessPart.CFrame)
  102.  
  103. Tween(18,game:GetService("Workspace").BoatStages.NormalStages.CaveStage10.DarknessPart.CFrame)
  104.  
  105. Tween(2,game:GetService("Workspace").GoldenChest.TreasureChest.Top.Union.CFrame + Vector3.new(0,10,0))
  106.  
  107. pcall(function()
  108.  
  109. firetouchinterest(game.Players.LocalPlayer.Character.HumanoidRootPart,game:GetService("Workspace").GoldenChest.Collider,0)
  110.  
  111. end) wait(5)
  112.  
  113. Repeat()
  114.  
  115. end
  116.  
  117. Repeat()
  118.  
  119. -- End of the auto farm script
  120.  
  121. end)
  122.  
  123.  
  124.  
  125. AutoRob.Name = "AutoRob"
  126.  
  127. AutoRob.Parent = GUIBody
  128.  
  129. AutoRob.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  130.  
  131. AutoRob.Position = UDim2.new(0.34375, 0, 0.416666657, 0)
  132.  
  133. AutoRob.Size = UDim2.new(0, 200, 0, 50)
  134.  
  135. AutoRob.Font = Enum.Font.ArialBold
  136.  
  137. AutoRob.Text = "Infinite Blocks"
  138.  
  139. AutoRob.TextColor3 = Color3.fromRGB(0, 0, 0)
  140.  
  141. AutoRob.TextSize = 25.000
  142.  
  143. AutoRob.MouseButton1Down:connect(function()AutoRob.BackgroundColor3 = Color3.fromRGB(0, 255, 0)
  144.  
  145. end)
  146.  
  147. AutoRob.MouseButton1Down:connect(function()
  148.  
  149. -- Below this is a script for infinite blocks
  150.  
  151. for i,v in pairs(game:GetService("Players").LocalPlayer.PlayerGui.BuildGui.InventoryFrame.ScrollingFrame.BlocksFrame:GetChildren()) do
  152.  
  153. if v:FindFirstChild("AmountText") then
  154.  
  155. v.AmountText.Text = 69420
  156.  
  157. v.AmountText.Changed:Connect(function()
  158.  
  159. v.AmountText.Text = 69420
  160.  
  161. end)
  162.  
  163. end
  164.  
  165. end
  166.  
  167. -- End of the infinite block script
  168.  
  169. end)
  170.  
  171.  
  172.  
  173.  
  174.  
  175. Close.Name = "Close"
  176.  
  177. Close.Parent = GUIBody
  178.  
  179. Close.BackgroundColor3 = Color3.fromRGB(170, 0, 0)
  180.  
  181. Close.Position = UDim2.new(0.953125, 0, 0, 0)
  182.  
  183. Close.Size = UDim2.new(0, 30, 0, 30)
  184.  
  185. Close.Font = Enum.Font.SourceSans
  186.  
  187. Close.Text = "X"
  188.  
  189. Close.TextColor3 = Color3.fromRGB(0, 0, 0)
  190.  
  191. Close.TextScaled = true
  192.  
  193. Close.TextSize = 14.000
  194.  
  195. Close.TextWrapped = true
  196.  
  197. Close.MouseButton1Down:connect(function()
  198.  
  199. GUIBody.Visible = false
  200.  
  201. OpenMain.Visible = true
  202.  
  203. end)
  204.  
  205.  
  206.  
  207.  
  208.  
  209. OpenMain.Name = "OpenMain"
  210.  
  211. OpenMain.Parent = ScreenGui
  212.  
  213. OpenMain.BackgroundColor3 = Color3.fromRGB(0, 85, 0)
  214.  
  215. OpenMain.Position = UDim2.new(0, 0, 0.444717467, 0)
  216.  
  217. OpenMain.Size = UDim2.new(0, 80, 0, 60)
  218.  
  219. OpenMain.Draggable = true
  220.  
  221. OpenMain.Active = true
  222.  
  223.  
  224.  
  225. OpenButton.Name = "OpenButton"
  226.  
  227. OpenButton.Parent = OpenMain
  228.  
  229. OpenButton.BackgroundColor3 = Color3.fromRGB(0, 170, 0)
  230.  
  231. OpenButton.Size = UDim2.new(0, 80, 0, 40)
  232.  
  233. OpenButton.Font = Enum.Font.SourceSans
  234.  
  235. OpenButton.Text = "Open"
  236.  
  237. OpenButton.TextColor3 = Color3.fromRGB(0, 0, 0)
  238.  
  239. OpenButton.TextSize = 14.000
  240.  
  241. OpenButton.MouseButton1Down:connect(function()
  242.  
  243. GUIBody.Visible = true
  244.  
  245. OpenMain.Visible = false
  246.  
  247. end)
  248.  
  249. -- end of the build a boat script
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement