Advertisement
Guest User

Booga Nooga

a guest
Apr 3rd, 2019
143
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 8.45 KB | None | 0 0
  1. _G.gold = false
  2. _G.Tree = false
  3. _G.bush = false
  4. _G.bigtree = false
  5. -- Farewell Infortality.
  6. -- Version: 2.82
  7. -- Instances:
  8. local ScreenGui = Instance.new("ScreenGui")
  9. local logingui = Instance.new("Frame")
  10. local user = Instance.new("TextBox")
  11. local pass = Instance.new("TextBox")
  12. local submit = Instance.new("TextButton")
  13. local maingui = Instance.new("Frame")
  14. local treefarm = Instance.new("TextButton")
  15. local bigtreefarm = Instance.new("TextButton")
  16. local goldfarm = Instance.new("TextButton")
  17. local farm = Instance.new("TextButton")
  18. local bushfarm = Instance.new("TextButton")
  19. local close = Instance.new("TextButton")
  20. local opengui = Instance.new("Frame")
  21. local open = Instance.new("TextButton")
  22. --Properties:
  23. ScreenGui.Parent = game.CoreGui
  24. ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  25.  
  26. logingui.Name = "logingui"
  27. logingui.Parent = ScreenGui
  28. logingui.BackgroundColor3 = Color3.new(0.333333, 0.666667, 1)
  29. logingui.BackgroundTransparency = 0.69999998807907
  30. logingui.BorderColor3 = Color3.new(0, 0, 0.498039)
  31. logingui.BorderSizePixel = 3
  32. logingui.Position = UDim2.new(0.348214239, 0, 0.343373477, 0)
  33. logingui.Size = UDim2.new(0, 238, 0, 155)
  34. logingui.Active = true
  35. logingui.Draggable = true
  36.  
  37. user.Name = "user"
  38. user.Parent = logingui
  39. user.BackgroundColor3 = Color3.new(0.333333, 1, 1)
  40. user.BackgroundTransparency = 0.5
  41. user.BorderSizePixel = 2
  42. user.Position = UDim2.new(0.0378151275, 0, 0.0645161271, 0)
  43. user.Size = UDim2.new(0, 219, 0, 42)
  44. user.Font = Enum.Font.Fantasy
  45. user.Text = "Username"
  46. user.TextColor3 = Color3.new(0, 0, 0)
  47. user.TextScaled = true
  48. user.TextSize = 14
  49. user.TextWrapped = true
  50.  
  51. pass.Name = "pass"
  52. pass.Parent = logingui
  53. pass.BackgroundColor3 = Color3.new(0.333333, 1, 1)
  54. pass.BackgroundTransparency = 0.5
  55. pass.BorderSizePixel = 2
  56. pass.Position = UDim2.new(0.0378151275, 0, 0.367741942, 0)
  57. pass.Size = UDim2.new(0, 219, 0, 40)
  58. pass.Font = Enum.Font.Fantasy
  59. pass.Text = "Password"
  60. pass.TextColor3 = Color3.new(0, 0, 0)
  61. pass.TextScaled = true
  62. pass.TextSize = 14
  63. pass.TextWrapped = true
  64.  
  65. submit.Name = "submit"
  66. submit.Parent = logingui
  67. submit.BackgroundColor3 = Color3.new(0.333333, 1, 1)
  68. submit.BackgroundTransparency = 0.60000002384186
  69. submit.Position = UDim2.new(0.142857149, 0, 0.703225791, 0)
  70. submit.Size = UDim2.new(0, 169, 0, 36)
  71. submit.Font = Enum.Font.SciFi
  72. submit.Text = "Login"
  73. submit.TextColor3 = Color3.new(0, 0, 0)
  74. submit.TextScaled = true
  75. submit.TextSize = 14
  76. submit.TextWrapped = true
  77. submit.MouseButton1Down:connect(function()
  78. if user.Text == "Smash" and pass.Text == "test" then
  79.     logingui.Visible = false
  80.     opengui.Visible = true
  81. end
  82. end)
  83.  
  84. maingui.Name = "maingui"
  85. maingui.Parent = ScreenGui
  86. maingui.BackgroundColor3 = Color3.new(0.333333, 0.666667, 1)
  87. maingui.BackgroundTransparency = 0.69999998807907
  88. maingui.BorderColor3 = Color3.new(0, 0, 0.498039)
  89. maingui.BorderSizePixel = 3
  90. maingui.Position = UDim2.new(0.672193825, 0, 0.343373477, 0)
  91. maingui.Size = UDim2.new(0, 238, 0, 155)
  92. maingui.Visible = false
  93. maingui.Active = true
  94. maingui.Draggable = true
  95.  
  96. bushfarm.Name = "bushfarm"
  97. bushfarm.Parent = maingui
  98. bushfarm.BackgroundColor3 = Color3.new(0.333333, 1, 1)
  99. bushfarm.BackgroundTransparency = 0.60000002384186
  100. bushfarm.Position = UDim2.new(0.0504201725, 0, 0.0645161271, 0)
  101. bushfarm.Size = UDim2.new(0, 100, 0, 20)
  102. bushfarm.Font = Enum.Font.SciFi
  103. bushfarm.Text = "Farm Bush : Off"
  104. bushfarm.TextColor3 = Color3.new(0, 0, 0)
  105. bushfarm.TextScaled = true
  106. bushfarm.TextSize = 14
  107. bushfarm.TextWrapped = true
  108. bushfarm.MouseButton1Down:connect(function()
  109.     if _G.bush == true then
  110.         _G.bush = false
  111.         bushfarm.Text = "Farm Bush : Off"
  112.     elseif _G.bush == false then
  113.         _G.bush = true
  114.         bushfarm.Text = "Farm Bush : On"
  115.         while _G.bush == true do
  116.         wait(0.01)
  117.         local player = game.Players.LocalPlayer
  118.         player.Character.HumanoidRootPart.CFrame = game.workspace.Bush.Stump.CFrame
  119.         end
  120.         end
  121. end)
  122.  
  123.  
  124.  
  125. close.Name = "close"
  126. close.Parent = maingui
  127. close.BackgroundColor3 = Color3.new(0.333333, 1, 1)
  128. close.BackgroundTransparency = 0.60000002384186
  129. close.Position = UDim2.new(0.91176486, 0, 0, 0)
  130. close.Size = UDim2.new(0, 20, 0, 20)
  131. close.Font = Enum.Font.SciFi
  132. close.Text = "X"
  133. close.TextColor3 = Color3.new(0, 0, 0)
  134. close.TextScaled = true
  135. close.TextSize = 14
  136. close.TextWrapped = true
  137. close.MouseButton1Down:connect(function()
  138. maingui.Visible = false
  139. opengui.Visible = true
  140. end)
  141.  
  142. treefarm.Name = "treefarm"
  143. treefarm.Parent = maingui
  144. treefarm.BackgroundColor3 = Color3.new(0.333333, 1, 1)
  145. treefarm.BackgroundTransparency = 0.60000002384186
  146. treefarm.Position = UDim2.new(0.0504201725, 0, 0.238709673, 0)
  147. treefarm.Size = UDim2.new(0, 100, 0, 20)
  148. treefarm.Font = Enum.Font.SciFi
  149. treefarm.Text = "Farm Tree : Off"
  150. treefarm.TextColor3 = Color3.new(0, 0, 0)
  151. treefarm.TextScaled = true
  152. treefarm.TextSize = 14
  153. treefarm.TextWrapped = true
  154. treefarm.MouseButton1Down:connect(function()
  155.     if _G.Tree == true then
  156.         _G.Tree = false
  157.         treefarm.Text = "Farm Tree : Off"
  158.     elseif _G.Tree == false then
  159.         _G.Tree = true
  160.         treefarm.Text = "Farm Tree : On"
  161.         while _G.Tree == true do
  162.         wait(0.01)
  163.         local player = game.Players.LocalPlayer
  164.         player.Character.HumanoidRootPart.CFrame = game.workspace["Small Tree"].Trunk.CFrame
  165.         end
  166.         end
  167. end)
  168.  
  169. bigtreefarm.Name = "bigtreefarm"
  170. bigtreefarm.Parent = maingui
  171. bigtreefarm.BackgroundColor3 = Color3.new(0.333333, 1, 1)
  172. bigtreefarm.BackgroundTransparency = 0.60000002384186
  173. bigtreefarm.Position = UDim2.new(0.0504201725, 0, 0.43225807, 0)
  174. bigtreefarm.Size = UDim2.new(0, 100, 0, 20)
  175. bigtreefarm.Font = Enum.Font.SciFi
  176. bigtreefarm.Text = "Farm Big Tree : Off"
  177. bigtreefarm.TextColor3 = Color3.new(0, 0, 0)
  178. bigtreefarm.TextScaled = true
  179. bigtreefarm.TextSize = 14
  180. bigtreefarm.TextWrapped = true
  181. bigtreefarm.MouseButton1Down:connect(function()
  182.     if _G.bigtree == true then
  183.         _G.bigtree = false
  184.         bigtreefarm.Text = "Farm Big Tree : Off"
  185.     elseif _G.bigtree == false then
  186.         _G.bigtree = true
  187.         bigtreefarm.Text = "Farm Big Tree : On"
  188.         while _G.bigtree == true do
  189.         wait(0.01)
  190.         local player = game.Players.LocalPlayer
  191.         player.Character.HumanoidRootPart.CFrame = game.workspace["Swoll Tree"].Trunk.CFrame
  192.         end
  193.         end
  194. end)
  195.  
  196. goldfarm.Name = "goldfarm"
  197. goldfarm.Parent = maingui
  198. goldfarm.BackgroundColor3 = Color3.new(0.333333, 1, 1)
  199. goldfarm.BackgroundTransparency = 0.60000002384186
  200. goldfarm.Position = UDim2.new(0.0504201725, 0, 0.625806451, 0)
  201. goldfarm.Size = UDim2.new(0, 100, 0, 20)
  202. goldfarm.Font = Enum.Font.SciFi
  203. goldfarm.Text = "Farm Gold : Off"
  204. goldfarm.TextColor3 = Color3.new(0, 0, 0)
  205. goldfarm.TextScaled = true
  206. goldfarm.TextSize = 14
  207. goldfarm.TextWrapped = true
  208. goldfarm.MouseButton1Down:connect(function()
  209.     if _G.gold == true then
  210.         _G.gold = false
  211.         goldfarm.Text = "Farm Gold : Off"
  212.     elseif _G.gold == false then
  213.         _G.gold = true
  214.         goldfarm.Text = "Farm Gold : On"
  215.         while _G.gold == true do
  216.         wait(0.01)
  217.         local player = game.Players.LocalPlayer
  218.         player.Character.HumanoidRootPart.CFrame = game.workspace["Gold Node"].Reference.CFrame
  219.         end
  220.         end
  221. end)
  222.  
  223. farm.Name = "farm"
  224. farm.Parent = maingui
  225. farm.BackgroundColor3 = Color3.new(0.333333, 1, 1)
  226. farm.BackgroundTransparency = 0.60000002384186
  227. farm.Position = UDim2.new(0.0504201725, 0, 0.806451619, 0)
  228. farm.Size = UDim2.new(0, 100, 0, 20)
  229. farm.Font = Enum.Font.SciFi
  230. farm.Text = "Coming soon..."
  231. farm.TextColor3 = Color3.new(0, 0, 0)
  232. farm.TextScaled = true
  233. farm.TextSize = 14
  234. farm.TextWrapped = true
  235.  
  236. opengui.Name = "opengui"
  237. opengui.Parent = ScreenGui
  238. opengui.BackgroundColor3 = Color3.new(0.333333, 0.666667, 1)
  239. opengui.BackgroundTransparency = 0.69999998807907
  240. opengui.BorderColor3 = Color3.new(0, 0, 0.498039)
  241. opengui.BorderSizePixel = 3
  242. opengui.Position = UDim2.new(-4.86568545e-08, 0, 0.644578338, 0)
  243. opengui.Size = UDim2.new(0, 113, 0, 33)
  244. opengui.Visible = false
  245.  
  246. open.Name = "open"
  247. open.Parent = opengui
  248. open.BackgroundColor3 = Color3.new(0.333333, 1, 1)
  249. open.BackgroundTransparency = 0.60000002384186
  250. open.Position = UDim2.new(3.37583828e-07, 0, 0, 0)
  251. open.Size = UDim2.new(0, 112, 0, 33)
  252. open.Font = Enum.Font.SciFi
  253. open.Text = "Open"
  254. open.TextColor3 = Color3.new(0, 0, 0)
  255. open.TextScaled = true
  256. open.TextSize = 14
  257. open.TextWrapped = true
  258. open.MouseButton1Down:connect(function()
  259.     maingui.Visible = true
  260.     opengui.Visible = false
  261. end)
  262. -- Scripts:
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement