forgetfuldingo

Build a Boat

Aug 7th, 2020
24
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.49 KB | None | 0 0
  1. -- GUI Developed by Sweaty Chungus
  2. -- Instances:
  3.  
  4. local ScreenGui = Instance.new("ScreenGui")
  5. local GUIBody = Instance.new("Frame")
  6. local ImageLabel = Instance.new("ImageLabel")
  7. local Aimbot = Instance.new("TextButton")
  8. local NoRecoil = Instance.new("TextButton")
  9. local ESP = Instance.new("TextButton")
  10. local Close = Instance.new("TextButton")
  11. local OpenMain = Instance.new("Frame")
  12. local OpenButton = Instance.new("TextButton")
  13.  
  14. --Properties:
  15.  
  16. ScreenGui.Parent = game.CoreGui
  17.  
  18. GUIBody.Name = "GUIBody"
  19. GUIBody.Parent = ScreenGui
  20. GUIBody.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  21. GUIBody.Position = UDim2.new(0.247040257, 0, 0.205159709, 0)
  22. GUIBody.Size = UDim2.new(0, 640, 0, 480)
  23. GUIBody.Active = true
  24. GUIBody.Draggable = true
  25.  
  26. ImageLabel.Parent = GUIBody
  27. ImageLabel.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  28. ImageLabel.Size = UDim2.new(0, 640, 0, 480)
  29. ImageLabel.Image = "rbxassetid://5515980362"
  30.  
  31. Aimbot.Name = "Aimbot"
  32. Aimbot.Parent = GUIBody
  33. Aimbot.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  34. Aimbot.Position = UDim2.new(0.34375, 0, 0.208333328, 0)
  35. Aimbot.Size = UDim2.new(0, 200, 0, 50)
  36. Aimbot.Font = Enum.Font.ArialBold
  37. Aimbot.Text = "Auto Treasure"
  38. Aimbot.TextColor3 = Color3.fromRGB(0, 0, 0)
  39. Aimbot.TextSize = 25.000
  40. Aimbot.TextWrapped = true
  41. Aimbot.MouseButton1Down:connect(function()
  42. loadstring(game:HttpGet('https://pastebin.com/raw/sB2A2ePD'))()
  43. End)
  44.  
  45. Close.Name = "Close"
  46. Close.Parent = GUIBody
  47. Close.BackgroundColor3 = Color3.fromRGB(170, 0, 0)
  48. Close.Position = UDim2.new(0.953125, 0, 0, 0)
  49. Close.Size = UDim2.new(0, 30, 0, 30)
  50. Close.Font = Enum.Font.SourceSans
  51. Close.Text = "X"
  52. Close.TextColor3 = Color3.fromRGB(0, 0, 0)
  53. Close.TextScaled = true
  54. Close.TextSize = 14.000
  55. Close.TextWrapped = true
  56. Close.MouseButton1Down:connect(function()
  57. GUIBody.Visible = false
  58. OpenMain.Visible = true
  59. end)
  60.  
  61. OpenMain.Name = "OpenMain"
  62. OpenMain.Parent = ScreenGui
  63. OpenMain.BackgroundColor3 = Color3.fromRGB(0, 85, 0)
  64. OpenMain.Position = UDim2.new(0, 0, 0.444717467, 0)
  65. OpenMain.Size = UDim2.new(0, 80, 0, 60)
  66. OpenMain.Draggable = true
  67. OpenMain.Active = true
  68.  
  69. OpenButton.Name = "OpenButton"
  70. OpenButton.Parent = OpenMain
  71. OpenButton.BackgroundColor3 = Color3.fromRGB(0, 170, 0)
  72. OpenButton.Size = UDim2.new(0, 80, 0, 40)
  73. OpenButton.Font = Enum.Font.SourceSans
  74. OpenButton.Text = "Open"
  75. OpenButton.TextColor3 = Color3.fromRGB(0, 0, 0)
  76. OpenButton.TextSize = 14.000
  77. OpenButton.MouseButton1Down:connect(function()
  78. GUIBody.Visible = true
  79. OpenMain.Visible = false
  80. end)
Add Comment
Please, Sign In to add comment