Advertisement
Guest User

Untitled

a guest
Mar 19th, 2019
108
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 15.28 KB | None | 0 0
  1.  
  2. -- Objects
  3.  
  4. local LumberTycoon2Gui = Instance.new("ScreenGui")
  5. local LoginFrame = Instance.new("Frame")
  6. local LT2Gui = Instance.new("TextLabel")
  7. local username = Instance.new("TextBox")
  8. local password = Instance.new("TextBox")
  9. local Loginbutton = Instance.new("TextButton")
  10. local Credits = Instance.new("TextLabel")
  11. local ScriptsFrame = Instance.new("Frame")
  12. local TextLabel = Instance.new("TextLabel")
  13. local exitbutton = Instance.new("TextButton")
  14. local BoxedCars = Instance.new("TextButton")
  15. local Swamp = Instance.new("TextButton")
  16. local Volcano = Instance.new("TextButton")
  17. local Spawn = Instance.new("TextButton")
  18. local Speed = Instance.new("TextButton")
  19. local Jpower = Instance.new("TextButton")
  20. local Cave = Instance.new("TextButton")
  21. local LinksLogic = Instance.new("TextButton")
  22. local SkiLodge = Instance.new("TextButton")
  23. local ClickTP = Instance.new("TextButton")
  24. local Palm = Instance.new("TextButton")
  25. local GodMode = Instance.new("TextButton")
  26. local StrangeMan = Instance.new("TextButton")
  27. local woodrus = Instance.new("TextButton")
  28. local EndTimes = Instance.new("TextButton")
  29. local bobshack = Instance.new("TextButton")
  30. local Bringwood = Instance.new("TextButton")
  31. local yourplot = Instance.new("TextButton")
  32.  
  33. -- Properties
  34.  
  35. LumberTycoon2Gui.Name = "Lumber Tycoon 2 Gui"
  36. LumberTycoon2Gui.Parent = game.CoreGui
  37.  
  38. LoginFrame.Name = "LoginFrame"
  39. LoginFrame.Parent = LumberTycoon2Gui
  40. LoginFrame.Active = true
  41. LoginFrame.BackgroundColor3 = Color3.new(0.427451, 0.427451, 0.427451)
  42. LoginFrame.BorderSizePixel = 2
  43. LoginFrame.Draggable = true
  44. LoginFrame.Position = UDim2.new(0.0814094841, 0, 0.0447154418, 0)
  45. LoginFrame.Selectable = true
  46. LoginFrame.Size = UDim2.new(0, 290, 0, 304)
  47.  
  48. LT2Gui.Name = "LT2 Gui"
  49. LT2Gui.Parent = LoginFrame
  50. LT2Gui.BackgroundColor3 = Color3.new(0.247059, 0.239216, 0.239216)
  51. LT2Gui.Size = UDim2.new(0, 290, 0, 44)
  52. LT2Gui.Font = Enum.Font.SciFi
  53. LT2Gui.FontSize = Enum.FontSize.Size14
  54. LT2Gui.Text = "Lumber Tycoon 2 GUI"
  55. LT2Gui.TextColor3 = Color3.new(0, 0, 1)
  56. LT2Gui.TextScaled = true
  57. LT2Gui.TextSize = 14
  58. LT2Gui.TextStrokeColor3 = Color3.new(1, 0, 0.0666667)
  59. LT2Gui.TextWrapped = true
  60.  
  61. username.Name = "username"
  62. username.Parent = LoginFrame
  63. username.BackgroundColor3 = Color3.new(0.27451, 0.27451, 0.27451)
  64. username.Position = UDim2.new(0.155172408, 0, 0.282894731, 0)
  65. username.Size = UDim2.new(0, 200, 0, 50)
  66. username.Font = Enum.Font.SourceSansBold
  67. username.FontSize = Enum.FontSize.Size28
  68. username.Text = "Username"
  69. username.TextColor3 = Color3.new(1, 1, 1)
  70. username.TextSize = 25
  71. username.TextXAlignment = Enum.TextXAlignment.Left
  72.  
  73. password.Name = "password"
  74. password.Parent = LoginFrame
  75. password.BackgroundColor3 = Color3.new(0.27451, 0.27451, 0.27451)
  76. password.Position = UDim2.new(0.155172408, 0, 0.536184192, 0)
  77. password.Size = UDim2.new(0, 200, 0, 50)
  78. password.Font = Enum.Font.SourceSansBold
  79. password.FontSize = Enum.FontSize.Size28
  80. password.Text = "Password"
  81. password.TextColor3 = Color3.new(1, 1, 1)
  82. password.TextSize = 25
  83. password.TextXAlignment = Enum.TextXAlignment.Left
  84.  
  85. Loginbutton.Name = "Loginbutton"
  86. Loginbutton.Parent = LoginFrame
  87. Loginbutton.BackgroundColor3 = Color3.new(0.27451, 0.27451, 0.27451)
  88. Loginbutton.BorderColor3 = Color3.new(0.27451, 0.27451, 0.27451)
  89. Loginbutton.Position = UDim2.new(0.258620679, 0, 0.782894731, 0)
  90. Loginbutton.Size = UDim2.new(0, 140, 0, 39)
  91. Loginbutton.Font = Enum.Font.SourceSansBold
  92. Loginbutton.FontSize = Enum.FontSize.Size24
  93. Loginbutton.Text = "Login"
  94. Loginbutton.TextColor3 = Color3.new(1, 1, 1)
  95. Loginbutton.TextSize = 20
  96. Loginbutton.TextWrapped = true
  97. Loginbutton.MouseButton1Down:connect(function()
  98. if username.Text == "KevinPlayLT2" and password.Text == "robloxuser" then
  99. LoginFrame.Visible = false
  100. ScriptsFrame.Visible = true
  101. end
  102.  
  103. end)
  104.  
  105. Credits.Name = "Credits"
  106. Credits.Parent = LoginFrame
  107. Credits.BackgroundColor3 = Color3.new(0.427451, 0.427451, 0.427451)
  108. Credits.BorderSizePixel = 0
  109. Credits.Position = UDim2.new(0, 0, 0.164473668, 0)
  110. Credits.Size = UDim2.new(0, 141, 0, 19)
  111. Credits.Font = Enum.Font.SourceSans
  112. Credits.FontSize = Enum.FontSize.Size14
  113. Credits.Text = "Made By: KevinPlayLT2"
  114. Credits.TextScaled = true
  115. Credits.TextSize = 14
  116. Credits.TextWrapped = true
  117. Credits.TextXAlignment = Enum.TextXAlignment.Left
  118.  
  119. ScriptsFrame.Name = "ScriptsFrame"
  120. ScriptsFrame.Parent = LumberTycoon2Gui
  121. ScriptsFrame.Active = true
  122. ScriptsFrame.BackgroundColor3 = Color3.new(0.439216, 0.729412, 0.909804)
  123. ScriptsFrame.Draggable = true
  124. ScriptsFrame.Position = UDim2.new(0.469623327, 0, 0.0257452596, 0)
  125. ScriptsFrame.Selectable = true
  126. ScriptsFrame.Size = UDim2.new(0, 386, 0, 318)
  127. ScriptsFrame.Style = Enum.FrameStyle.RobloxSquare
  128. ScriptsFrame.Visible = false
  129.  
  130. TextLabel.Parent = ScriptsFrame
  131. TextLabel.BackgroundColor3 = Color3.new(0.0588235, 0.0588235, 0.0588235)
  132. TextLabel.Position = UDim2.new(-0.0207253881, 0, -0.0251572318, 0)
  133. TextLabel.Size = UDim2.new(0, 386, 0, 33)
  134. TextLabel.Font = Enum.Font.SciFi
  135. TextLabel.FontSize = Enum.FontSize.Size14
  136. TextLabel.Text = "Lumber Tycoon 2 Gui"
  137. TextLabel.TextColor3 = Color3.new(0.0313726, 0, 0.996078)
  138. TextLabel.TextScaled = true
  139. TextLabel.TextSize = 14
  140. TextLabel.TextWrapped = true
  141.  
  142. exitbutton.Name = "exitbutton"
  143. exitbutton.Parent = ScriptsFrame
  144. exitbutton.BackgroundColor3 = Color3.new(0.0588235, 0.0588235, 0.0588235)
  145. exitbutton.BorderSizePixel = 0
  146. exitbutton.Position = UDim2.new(0.935233116, 0, -0.0251572318, 0)
  147. exitbutton.Size = UDim2.new(0, 32, 0, 33)
  148. exitbutton.Font = Enum.Font.SourceSans
  149. exitbutton.FontSize = Enum.FontSize.Size14
  150. exitbutton.Text = "X"
  151. exitbutton.TextColor3 = Color3.new(1, 1, 1)
  152. exitbutton.TextScaled = true
  153. exitbutton.TextSize = 14
  154. exitbutton.TextWrapped = true
  155. exitbutton.MouseButton1Down:connect(function()
  156. ScriptsFrame.Visible = false
  157. end
  158. )
  159.  
  160. BoxedCars.Name = "Boxed Cars"
  161. BoxedCars.Parent = ScriptsFrame
  162. BoxedCars.BackgroundColor3 = Color3.new(0, 0, 0)
  163. BoxedCars.Position = UDim2.new(0.0362694301, 0, 0.128930822, 0)
  164. BoxedCars.Size = UDim2.new(0, 106, 0, 33)
  165. BoxedCars.Font = Enum.Font.SciFi
  166. BoxedCars.FontSize = Enum.FontSize.Size28
  167. BoxedCars.Text = "BoxedCars"
  168. BoxedCars.TextColor3 = Color3.new(0, 0.0666667, 1)
  169. BoxedCars.TextSize = 25
  170. BoxedCars.MouseButton1Click:connect(function()
  171. game.Players.LocalPlayer.Character:MoveTo(Vector3.new(509, 3, -1463))end
  172. )
  173.  
  174. Swamp.Name = "Swamp"
  175. Swamp.Parent = ScriptsFrame
  176. Swamp.BackgroundColor3 = Color3.new(0, 0, 0)
  177. Swamp.Position = UDim2.new(0.709844589, 0, 0.130503148, 0)
  178. Swamp.Size = UDim2.new(0, 106, 0, 33)
  179. Swamp.Font = Enum.Font.SciFi
  180. Swamp.FontSize = Enum.FontSize.Size28
  181. Swamp.Text = "Swamp"
  182. Swamp.TextColor3 = Color3.new(0, 0.0666667, 1)
  183. Swamp.TextSize = 25
  184. Swamp.MouseButton1Click:connect(function()
  185. game.Players.LocalPlayer.Character:MoveTo(Vector3.new(-1209,132,-801))end
  186. )
  187.  
  188. Volcano.Name = "Volcano"
  189. Volcano.Parent = ScriptsFrame
  190. Volcano.BackgroundColor3 = Color3.new(0, 0, 0)
  191. Volcano.Position = UDim2.new(0.369170964, 0, 0.753144622, 0)
  192. Volcano.Size = UDim2.new(0, 106, 0, 33)
  193. Volcano.Font = Enum.Font.SciFi
  194. Volcano.FontSize = Enum.FontSize.Size28
  195. Volcano.Text = "Volcano"
  196. Volcano.TextColor3 = Color3.new(0, 0.0666667, 1)
  197. Volcano.TextSize = 25
  198. Volcano.MouseButton1Click:connect(function()
  199. game.Players.LocalPlayer.Character:MoveTo(Vector3.new(-1585,622,1140))end
  200. )
  201.  
  202. Spawn.Name = "Spawn"
  203. Spawn.Parent = ScriptsFrame
  204. Spawn.BackgroundColor3 = Color3.new(0, 0, 0)
  205. Spawn.Position = UDim2.new(0.369170964, 0, 0.599056602, 0)
  206. Spawn.Size = UDim2.new(0, 106, 0, 33)
  207. Spawn.Font = Enum.Font.SciFi
  208. Spawn.FontSize = Enum.FontSize.Size28
  209. Spawn.Text = "Spawn"
  210. Spawn.TextColor3 = Color3.new(0, 0.0666667, 1)
  211. Spawn.TextSize = 25
  212. Spawn.MouseButton1Click:connect(function()
  213. game.Players.LocalPlayer.Character:MoveTo(Vector3.new(155,3,74))end
  214. )
  215.  
  216. Speed.Name = "Speed"
  217. Speed.Parent = ScriptsFrame
  218. Speed.BackgroundColor3 = Color3.new(0, 0, 0)
  219. Speed.Position = UDim2.new(0.370466322, 0, 0.435534596, 0)
  220. Speed.Size = UDim2.new(0, 106, 0, 33)
  221. Speed.Font = Enum.Font.SciFi
  222. Speed.FontSize = Enum.FontSize.Size28
  223. Speed.Text = "Speed"
  224. Speed.TextColor3 = Color3.new(0, 0.0666667, 1)
  225. Speed.TextSize = 25
  226. Speed.MouseButton1Click:connect(function()while wait()do
  227. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed=200
  228. end
  229. end
  230. )
  231.  
  232. Jpower.Name = "Jpower"
  233. Jpower.Parent = ScriptsFrame
  234. Jpower.BackgroundColor3 = Color3.new(0, 0, 0)
  235. Jpower.Position = UDim2.new(0.369170964, 0, 0.278301895, 0)
  236. Jpower.Size = UDim2.new(0, 106, 0, 33)
  237. Jpower.Font = Enum.Font.SciFi
  238. Jpower.FontSize = Enum.FontSize.Size28
  239. Jpower.Text = "Jpower"
  240. Jpower.TextColor3 = Color3.new(0, 0.0666667, 1)
  241. Jpower.TextSize = 25
  242. Jpower.MouseButton1Click:connect(function()while wait()do
  243. game.Players.LocalPlayer.Character.Humanoid.JumpPower=100 end end)
  244.  
  245. Cave.Name = "Cave"
  246. Cave.Parent = ScriptsFrame
  247. Cave.BackgroundColor3 = Color3.new(0, 0, 0)
  248. Cave.Position = UDim2.new(0.369170964, 0, 0.128930822, 0)
  249. Cave.Size = UDim2.new(0, 106, 0, 33)
  250. Cave.Font = Enum.Font.SciFi
  251. Cave.FontSize = Enum.FontSize.Size28
  252. Cave.Text = "Cave"
  253. Cave.TextColor3 = Color3.new(0, 0.0666667, 1)
  254. Cave.TextSize = 25
  255. Cave.MouseButton1Click:connect(function()
  256. game.Players.LocalPlayer.Character:MoveTo(Vector3.new(3581,-179,430))end
  257. )
  258.  
  259. LinksLogic.Name = "Links Logic"
  260. LinksLogic.Parent = ScriptsFrame
  261. LinksLogic.BackgroundColor3 = Color3.new(0, 0, 0)
  262. LinksLogic.Position = UDim2.new(0.0362694301, 0, 0.75, 0)
  263. LinksLogic.Size = UDim2.new(0, 106, 0, 33)
  264. LinksLogic.Font = Enum.Font.SciFi
  265. LinksLogic.FontSize = Enum.FontSize.Size28
  266. LinksLogic.Text = "LinkLogic"
  267. LinksLogic.TextColor3 = Color3.new(0, 0.0666667, 1)
  268. LinksLogic.TextSize = 25
  269. LinksLogic.MouseButton1Click:connect(function()
  270. game.Players.LocalPlayer.Character:MoveTo(Vector3.new(4607,7.5,-798))end
  271. )
  272.  
  273. SkiLodge.Name = "Ski Lodge"
  274. SkiLodge.Parent = ScriptsFrame
  275. SkiLodge.BackgroundColor3 = Color3.new(0, 0, 0)
  276. SkiLodge.Position = UDim2.new(0.0362694301, 0, 0.599056602, 0)
  277. SkiLodge.Size = UDim2.new(0, 106, 0, 33)
  278. SkiLodge.Font = Enum.Font.SciFi
  279. SkiLodge.FontSize = Enum.FontSize.Size28
  280. SkiLodge.Text = "Ski Lodge"
  281. SkiLodge.TextColor3 = Color3.new(0, 0.0666667, 1)
  282. SkiLodge.TextSize = 25
  283. SkiLodge.MouseButton1Click:connect(function()
  284. game.Players.LocalPlayer.Character:MoveTo(Vector3.new(1244, 62, 2306))end
  285. )
  286.  
  287. ClickTP.Name = "Click TP"
  288. ClickTP.Parent = ScriptsFrame
  289. ClickTP.BackgroundColor3 = Color3.new(0, 0, 0)
  290. ClickTP.Position = UDim2.new(0.0349740908, 0, 0.435534596, 0)
  291. ClickTP.Size = UDim2.new(0, 106, 0, 33)
  292. ClickTP.Font = Enum.Font.SciFi
  293. ClickTP.FontSize = Enum.FontSize.Size28
  294. ClickTP.Text = "Click TP"
  295. ClickTP.TextColor3 = Color3.new(0, 0.0666667, 1)
  296. ClickTP.TextSize = 25
  297. ClickTP.MouseButton1Click:connect(function()
  298. local acc=Instance.new("Tool",game.Players.LocalPlayer.Backpack)acc.RequiresHandle=false;acc.RobloxLocked=true;acc.Name="Tool"
  299. acc.ToolTip="Teleport Tool"
  300. acc.Equipped:connect(function(bcc)
  301. bcc.Button1Down:connect(function()
  302. if bcc.Target then
  303. game.Workspace:FindFirstChild(game.Players.LocalPlayer.Name).HumanoidRootPart.CFrame=(CFrame.new(bcc.Hit.x,
  304. bcc.Hit.y+5,bcc.Hit.z))
  305. end
  306. end)
  307. end)
  308. end)
  309. Palm.Name = "Palm"
  310. Palm.Parent = ScriptsFrame
  311. Palm.BackgroundColor3 = Color3.new(0, 0, 0)
  312. Palm.Position = UDim2.new(0.0349740908, 0, 0.278301895, 0)
  313. Palm.Size = UDim2.new(0, 106, 0, 33)
  314. Palm.Font = Enum.Font.SciFi
  315. Palm.FontSize = Enum.FontSize.Size28
  316. Palm.Text = "Palm"
  317. Palm.TextColor3 = Color3.new(0, 0.0666667, 1)
  318. Palm.TextSize = 25
  319. Palm.MouseButton1Click:connect(function()
  320. game.Players.LocalPlayer.Character:MoveTo(Vector3.new(2549, -5, -42))end
  321. )
  322.  
  323. GodMode.Name = "GodMode"
  324. GodMode.Parent = ScriptsFrame
  325. GodMode.BackgroundColor3 = Color3.new(0, 0, 0)
  326. GodMode.Position = UDim2.new(0.709844589, 0, 0.272012591, 0)
  327. GodMode.Size = UDim2.new(0, 106, 0, 33)
  328. GodMode.Font = Enum.Font.SciFi
  329. GodMode.FontSize = Enum.FontSize.Size28
  330. GodMode.Text = "GodMode"
  331. GodMode.TextColor3 = Color3.new(0, 0.0666667, 1)
  332. GodMode.TextSize = 25
  333. GodMode.MouseButton1Click:Connect(function()
  334. god()
  335. end)
  336.  
  337. StrangeMan.Name = "StrangeMan"
  338. StrangeMan.Parent = ScriptsFrame
  339. StrangeMan.BackgroundColor3 = Color3.new(0, 0, 0)
  340. StrangeMan.Position = UDim2.new(0.709844589, 0, 0.435534596, 0)
  341. StrangeMan.Size = UDim2.new(0, 106, 0, 33)
  342. StrangeMan.Font = Enum.Font.SciFi
  343. StrangeMan.FontSize = Enum.FontSize.Size28
  344. StrangeMan.Text = "ThePower"
  345. StrangeMan.TextColor3 = Color3.new(0, 0.0666667, 1)
  346. StrangeMan.TextSize = 25
  347. StrangeMan.MouseButton1Click:connect(function()
  348. game.Players.LocalPlayer.Character:MoveTo(Vector3.new(1061, 16, 1131))end
  349. )
  350.  
  351. woodrus.Name = "woodrus"
  352. woodrus.Parent = ScriptsFrame
  353. woodrus.BackgroundColor3 = Color3.new(0, 0, 0)
  354. woodrus.Position = UDim2.new(0.709844589, 0, 0.589622676, 0)
  355. woodrus.Size = UDim2.new(0, 106, 0, 33)
  356. woodrus.Font = Enum.Font.SciFi
  357. woodrus.FontSize = Enum.FontSize.Size28
  358. woodrus.Text = "WoodRUS"
  359. woodrus.TextColor3 = Color3.new(0, 0.0666667, 1)
  360. woodrus.TextSize = 25
  361. woodrus.MouseButton1Click:connect(function()
  362. game.Players.LocalPlayer.Character:MoveTo(Vector3.new(265,3,57))end
  363. )
  364.  
  365. EndTimes.Name = "EndTimes"
  366. EndTimes.Parent = ScriptsFrame
  367. EndTimes.BackgroundColor3 = Color3.new(0, 0, 0)
  368. EndTimes.Position = UDim2.new(0.709844589, 0, 0.75000006, 0)
  369. EndTimes.Size = UDim2.new(0, 106, 0, 33)
  370. EndTimes.Font = Enum.Font.SciFi
  371. EndTimes.FontSize = Enum.FontSize.Size28
  372. EndTimes.Text = "EndTime"
  373. EndTimes.TextColor3 = Color3.new(0, 0.0666667, 1)
  374. EndTimes.TextSize = 25
  375. EndTimes.MouseButton1Click:connect(function()
  376. game.Players.LocalPlayer.Character:MoveTo(Vector3.new(113, -214, -951))end
  377. )
  378.  
  379. bobshack.Name = "bobshack"
  380. bobshack.Parent = ScriptsFrame
  381. bobshack.BackgroundColor3 = Color3.new(0, 0, 0)
  382. bobshack.Position = UDim2.new(0.709844589, 0, 0.891509533, 0)
  383. bobshack.Size = UDim2.new(0, 106, 0, 33)
  384. bobshack.Font = Enum.Font.SciFi
  385. bobshack.FontSize = Enum.FontSize.Size28
  386. bobshack.Text = "BobShack"
  387. bobshack.TextColor3 = Color3.new(0, 0.0666667, 1)
  388. bobshack.TextSize = 25
  389. bobshack.MouseButton1Click:connect(function()
  390. game.Players.LocalPlayer.Character:MoveTo(Vector3.new(260, 8, -2542))end
  391. )
  392. Bringwood.Name = "Bringwood"
  393. Bringwood.Parent = ScriptsFrame
  394. Bringwood.BackgroundColor3 = Color3.new(0, 0, 0)
  395. Bringwood.Position = UDim2.new(0.0362694301, 0, 0.891509473, 0)
  396. Bringwood.Size = UDim2.new(0, 106, 0, 33)
  397. Bringwood.Font = Enum.Font.SciFi
  398. Bringwood.FontSize = Enum.FontSize.Size28
  399. Bringwood.Text = "BringWod"
  400. Bringwood.TextColor3 = Color3.new(0, 0.0666667, 1)
  401. Bringwood.TextSize = 25
  402. Bringwood.MouseButton1Down:connect(function()
  403. for _, Log in pairs(game.Workspace.LogModels:GetChildren()) do
  404. if Log.Name:sub(1,6) == "Loose_" and Log:findFirstChild("Owner") then
  405. if Log.Owner.Value == game.Players.LocalPlayer then
  406. Log:MoveTo(game.Players.LocalPlayer.Character.Torso.Position + Vector3.new(0,15,0))
  407. end
  408. end
  409. end
  410. end)
  411.  
  412. yourplot.Name = "yourplot"
  413. yourplot.Parent = ScriptsFrame
  414. yourplot.BackgroundColor3 = Color3.new(0, 0, 0)
  415. yourplot.Position = UDim2.new(0.37176162, 0, 0.891509414, 0)
  416. yourplot.Size = UDim2.new(0, 106, 0, 33)
  417. yourplot.Font = Enum.Font.SciFi
  418. yourplot.FontSize = Enum.FontSize.Size28
  419. yourplot.Text = "TP Plot"
  420. yourplot.TextColor3 = Color3.new(0, 0.0666667, 1)
  421. yourplot.TextSize = 25
  422. yourplot.MouseButton1Click:connect(function()
  423. for acc,bcc in
  424. pairs(game.Workspace.Properties:GetChildren())do
  425. if bcc.Owner.Value==game.Players.LocalPlayer then
  426. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame=
  427. bcc.OriginSquare.CFrame+Vector3.new(0,10,0)end end end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement