Advertisement
Guest User

SND;FHFGJG

a guest
Mar 23rd, 2019
360
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 30.52 KB | None | 0 0
  1. -- Objects
  2.  
  3. local LumberTycoon2Gui = Instance.new("ScreenGui")
  4. local LoginFrame = Instance.new("Frame")
  5. local LT2Gui = Instance.new("TextLabel")
  6. local username = Instance.new("TextBox")
  7. local password = Instance.new("TextBox")
  8. local Loginbutton = Instance.new("TextButton")
  9. local Credits = Instance.new("TextLabel")
  10. local ScriptsFrame = Instance.new("Frame")
  11. local TextLabel = Instance.new("TextLabel")
  12. local exitbutton = Instance.new("TextButton")
  13. local BoxedCars = Instance.new("TextButton")
  14. local Swamp = Instance.new("TextButton")
  15. local Volcano = Instance.new("TextButton")
  16. local Spawn = Instance.new("TextButton")
  17. local Speed = Instance.new("TextButton")
  18. local Jpower = Instance.new("TextButton")
  19. local Cave = Instance.new("TextButton")
  20. local LinksLogic = Instance.new("TextButton")
  21. local SkiLodge = Instance.new("TextButton")
  22. local ClickTP = Instance.new("TextButton")
  23. local Palm = Instance.new("TextButton")
  24. local GodMode = Instance.new("TextButton")
  25. local StrangeMan = Instance.new("TextButton")
  26. local woodrus = Instance.new("TextButton")
  27. local EndTimes = Instance.new("TextButton")
  28. local bobshack = Instance.new("TextButton")
  29. local Bringwood = Instance.new("TextButton")
  30. local yourplot = Instance.new("TextButton")
  31.  
  32. -- Properties
  33.  
  34. LumberTycoon2Gui.Name = "Lumber Tycoon 2 Gui"
  35. LumberTycoon2Gui.Parent = game.CoreGui
  36.  
  37. LoginFrame.Name = "LoginFrame"
  38. LoginFrame.Parent = LumberTycoon2Gui
  39. LoginFrame.Active = true
  40. LoginFrame.BackgroundColor3 = Color3.new(0.427451, 0.427451, 0.427451)
  41. LoginFrame.BorderSizePixel = 2
  42. LoginFrame.Draggable = true
  43. LoginFrame.Position = UDim2.new(0.0814094841, 0, 0.0447154418, 0)
  44. LoginFrame.Selectable = true
  45. LoginFrame.Size = UDim2.new(0, 290, 0, 304)
  46.  
  47. LT2Gui.Name = "LT2 Gui"
  48. LT2Gui.Parent = LoginFrame
  49. LT2Gui.BackgroundColor3 = Color3.new(0.247059, 0.239216, 0.239216)
  50. LT2Gui.Size = UDim2.new(0, 290, 0, 44)
  51. LT2Gui.Font = Enum.Font.SciFi
  52. LT2Gui.FontSize = Enum.FontSize.Size14
  53. LT2Gui.Text = "Lumber Tycoon 2 GUI"
  54. LT2Gui.TextColor3 = Color3.new(0, 0, 1)
  55. LT2Gui.TextScaled = true
  56. LT2Gui.TextSize = 14
  57. LT2Gui.TextStrokeColor3 = Color3.new(1, 0, 0.0666667)
  58. LT2Gui.TextWrapped = true
  59.  
  60. username.Name = "username"
  61. username.Parent = LoginFrame
  62. username.BackgroundColor3 = Color3.new(0.27451, 0.27451, 0.27451)
  63. username.Position = UDim2.new(0.155172408, 0, 0.282894731, 0)
  64. username.Size = UDim2.new(0, 200, 0, 50)
  65. username.Font = Enum.Font.SourceSansBold
  66. username.FontSize = Enum.FontSize.Size28
  67. username.Text = "Username"
  68. username.TextColor3 = Color3.new(1, 1, 1)
  69. username.TextSize = 25
  70. username.TextXAlignment = Enum.TextXAlignment.Left
  71.  
  72. password.Name = "password"
  73. password.Parent = LoginFrame
  74. password.BackgroundColor3 = Color3.new(0.27451, 0.27451, 0.27451)
  75. password.Position = UDim2.new(0.155172408, 0, 0.536184192, 0)
  76. password.Size = UDim2.new(0, 200, 0, 50)
  77. password.Font = Enum.Font.SourceSansBold
  78. password.FontSize = Enum.FontSize.Size28
  79. password.Text = "Password"
  80. password.TextColor3 = Color3.new(1, 1, 1)
  81. password.TextSize = 25
  82. password.TextXAlignment = Enum.TextXAlignment.Left
  83.  
  84. Loginbutton.Name = "Loginbutton"
  85. Loginbutton.Parent = LoginFrame
  86. Loginbutton.BackgroundColor3 = Color3.new(0.27451, 0.27451, 0.27451)
  87. Loginbutton.BorderColor3 = Color3.new(0.27451, 0.27451, 0.27451)
  88. Loginbutton.Position = UDim2.new(0.258620679, 0, 0.782894731, 0)
  89. Loginbutton.Size = UDim2.new(0, 140, 0, 39)
  90. Loginbutton.Font = Enum.Font.SourceSansBold
  91. Loginbutton.FontSize = Enum.FontSize.Size24
  92. Loginbutton.Text = "Login"
  93. Loginbutton.TextColor3 = Color3.new(1, 1, 1)
  94. Loginbutton.TextSize = 20
  95. Loginbutton.TextWrapped = true
  96. Loginbutton.MouseButton1Down:connect(function()
  97. if username.Text == "KevinPlayLT2" and password.Text == "robloxuser" then
  98. LoginFrame.Visible = false
  99. ScriptsFrame.Visible = true
  100. end
  101.  
  102. end)
  103.  
  104. Credits.Name = "Credits"
  105. Credits.Parent = LoginFrame
  106. Credits.BackgroundColor3 = Color3.new(0.427451, 0.427451, 0.427451)
  107. Credits.BorderSizePixel = 0
  108. Credits.Position = UDim2.new(0, 0, 0.164473668, 0)
  109. Credits.Size = UDim2.new(0, 141, 0, 19)
  110. Credits.Font = Enum.Font.SourceSans
  111. Credits.FontSize = Enum.FontSize.Size14
  112. Credits.Text = "Made By: KevinPlayLT2"
  113. Credits.TextScaled = true
  114. Credits.TextSize = 14
  115. Credits.TextWrapped = true
  116. Credits.TextXAlignment = Enum.TextXAlignment.Left
  117.  
  118. ScriptsFrame.Name = "ScriptsFrame"
  119. ScriptsFrame.Parent = LumberTycoon2Gui
  120. ScriptsFrame.Active = true
  121. ScriptsFrame.BackgroundColor3 = Color3.new(0.439216, 0.729412, 0.909804)
  122. ScriptsFrame.Draggable = true
  123. ScriptsFrame.Position = UDim2.new(0.469623327, 0, 0.0257452596, 0)
  124. ScriptsFrame.Selectable = true
  125. ScriptsFrame.Size = UDim2.new(0, 386, 0, 318)
  126. ScriptsFrame.Style = Enum.FrameStyle.RobloxSquare
  127. ScriptsFrame.Visible = false
  128.  
  129. TextLabel.Parent = ScriptsFrame
  130. TextLabel.BackgroundColor3 = Color3.new(0.0588235, 0.0588235, 0.0588235)
  131. TextLabel.Position = UDim2.new(-0.0207253881, 0, -0.0251572318, 0)
  132. TextLabel.Size = UDim2.new(0, 386, 0, 33)
  133. TextLabel.Font = Enum.Font.SciFi
  134. TextLabel.FontSize = Enum.FontSize.Size14
  135. TextLabel.Text = "Lumber Tycoon 2 Gui"
  136. TextLabel.TextColor3 = Color3.new(0.0313726, 0, 0.996078)
  137. TextLabel.TextScaled = true
  138. TextLabel.TextSize = 14
  139. TextLabel.TextWrapped = true
  140.  
  141. exitbutton.Name = "exitbutton"
  142. exitbutton.Parent = ScriptsFrame
  143. exitbutton.BackgroundColor3 = Color3.new(0.0588235, 0.0588235, 0.0588235)
  144. exitbutton.BorderSizePixel = 0
  145. exitbutton.Position = UDim2.new(0.935233116, 0, -0.0251572318, 0)
  146. exitbutton.Size = UDim2.new(0, 32, 0, 33)
  147. exitbutton.Font = Enum.Font.SourceSans
  148. exitbutton.FontSize = Enum.FontSize.Size14
  149. exitbutton.Text = "X"
  150. exitbutton.TextColor3 = Color3.new(1, 1, 1)
  151. exitbutton.TextScaled = true
  152. exitbutton.TextSize = 14
  153. exitbutton.TextWrapped = true
  154. exitbutton.MouseButton1Down:connect(function()
  155. ScriptsFrame.Visible = false
  156. end
  157. )
  158.  
  159. BoxedCars.Name = "Boxed Cars"
  160. BoxedCars.Parent = ScriptsFrame
  161. BoxedCars.BackgroundColor3 = Color3.new(0, 0, 0)
  162. BoxedCars.Position = UDim2.new(0.0362694301, 0, 0.128930822, 0)
  163. BoxedCars.Size = UDim2.new(0, 106, 0, 33)
  164. BoxedCars.Font = Enum.Font.SciFi
  165. BoxedCars.FontSize = Enum.FontSize.Size28
  166. BoxedCars.Text = "BoxedCars"
  167. BoxedCars.TextColor3 = Color3.new(0, 0.0666667, 1)
  168. BoxedCars.TextSize = 25
  169. BoxedCars.MouseButton1Click:connect(function()
  170. game.Players.LocalPlayer.Character:MoveTo(Vector3.new(509, 3, -1463))end
  171. )
  172.  
  173. Swamp.Name = "Swamp"
  174. Swamp.Parent = ScriptsFrame
  175. Swamp.BackgroundColor3 = Color3.new(0, 0, 0)
  176. Swamp.Position = UDim2.new(0.709844589, 0, 0.130503148, 0)
  177. Swamp.Size = UDim2.new(0, 106, 0, 33)
  178. Swamp.Font = Enum.Font.SciFi
  179. Swamp.FontSize = Enum.FontSize.Size28
  180. Swamp.Text = "Swamp"
  181. Swamp.TextColor3 = Color3.new(0, 0.0666667, 1)
  182. Swamp.TextSize = 25
  183. Swamp.MouseButton1Click:connect(function()
  184. game.Players.LocalPlayer.Character:MoveTo(Vector3.new(-1209,132,-801))end
  185. )
  186.  
  187. Volcano.Name = "Volcano"
  188. Volcano.Parent = ScriptsFrame
  189. Volcano.BackgroundColor3 = Color3.new(0, 0, 0)
  190. Volcano.Position = UDim2.new(0.369170964, 0, 0.753144622, 0)
  191. Volcano.Size = UDim2.new(0, 106, 0, 33)
  192. Volcano.Font = Enum.Font.SciFi
  193. Volcano.FontSize = Enum.FontSize.Size28
  194. Volcano.Text = "Volcano"
  195. Volcano.TextColor3 = Color3.new(0, 0.0666667, 1)
  196. Volcano.TextSize = 25
  197. Volcano.MouseButton1Click:connect(function()
  198. game.Players.LocalPlayer.Character:MoveTo(Vector3.new(-1585,622,1140))end
  199. )
  200.  
  201. Spawn.Name = "Spawn"
  202. Spawn.Parent = ScriptsFrame
  203. Spawn.BackgroundColor3 = Color3.new(0, 0, 0)
  204. Spawn.Position = UDim2.new(0.369170964, 0, 0.599056602, 0)
  205. Spawn.Size = UDim2.new(0, 106, 0, 33)
  206. Spawn.Font = Enum.Font.SciFi
  207. Spawn.FontSize = Enum.FontSize.Size28
  208. Spawn.Text = "Spawn"
  209. Spawn.TextColor3 = Color3.new(0, 0.0666667, 1)
  210. Spawn.TextSize = 25
  211. Spawn.MouseButton1Click:connect(function()
  212. game.Players.LocalPlayer.Character:MoveTo(Vector3.new(155,3,74))end
  213. )
  214.  
  215. Speed.Name = "Speed"
  216. Speed.Parent = ScriptsFrame
  217. Speed.BackgroundColor3 = Color3.new(0, 0, 0)
  218. Speed.Position = UDim2.new(0.370466322, 0, 0.435534596, 0)
  219. Speed.Size = UDim2.new(0, 106, 0, 33)
  220. Speed.Font = Enum.Font.SciFi
  221. Speed.FontSize = Enum.FontSize.Size28
  222. Speed.Text = "Speed"
  223. Speed.TextColor3 = Color3.new(0, 0.0666667, 1)
  224. Speed.TextSize = 25
  225. Speed.MouseButton1Click:connect(function()while wait()do
  226. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed=200
  227. end
  228. end
  229. )
  230.  
  231. Jpower.Name = "Jpower"
  232. Jpower.Parent = ScriptsFrame
  233. Jpower.BackgroundColor3 = Color3.new(0, 0, 0)
  234. Jpower.Position = UDim2.new(0.369170964, 0, 0.278301895, 0)
  235. Jpower.Size = UDim2.new(0, 106, 0, 33)
  236. Jpower.Font = Enum.Font.SciFi
  237. Jpower.FontSize = Enum.FontSize.Size28
  238. Jpower.Text = "Jpower"
  239. Jpower.TextColor3 = Color3.new(0, 0.0666667, 1)
  240. Jpower.TextSize = 25
  241. Jpower.MouseButton1Click:connect(function()while wait()do
  242. game.Players.LocalPlayer.Character.Humanoid.JumpPower=100 end end)
  243.  
  244. Cave.Name = "Cave"
  245. Cave.Parent = ScriptsFrame
  246. Cave.BackgroundColor3 = Color3.new(0, 0, 0)
  247. Cave.Position = UDim2.new(0.369170964, 0, 0.128930822, 0)
  248. Cave.Size = UDim2.new(0, 106, 0, 33)
  249. Cave.Font = Enum.Font.SciFi
  250. Cave.FontSize = Enum.FontSize.Size28
  251. Cave.Text = "Cave"
  252. Cave.TextColor3 = Color3.new(0, 0.0666667, 1)
  253. Cave.TextSize = 25
  254. Cave.MouseButton1Click:connect(function()
  255. game.Players.LocalPlayer.Character:MoveTo(Vector3.new(3581,-179,430))end
  256. )
  257.  
  258. LinksLogic.Name = "Links Logic"
  259. LinksLogic.Parent = ScriptsFrame
  260. LinksLogic.BackgroundColor3 = Color3.new(0, 0, 0)
  261. LinksLogic.Position = UDim2.new(0.0362694301, 0, 0.75, 0)
  262. LinksLogic.Size = UDim2.new(0, 106, 0, 33)
  263. LinksLogic.Font = Enum.Font.SciFi
  264. LinksLogic.FontSize = Enum.FontSize.Size28
  265. LinksLogic.Text = "LinkLogic"
  266. LinksLogic.TextColor3 = Color3.new(0, 0.0666667, 1)
  267. LinksLogic.TextSize = 25
  268. LinksLogic.MouseButton1Click:connect(function()
  269. game.Players.LocalPlayer.Character:MoveTo(Vector3.new(4607,7.5,-798))end
  270. )
  271.  
  272. SkiLodge.Name = "Ski Lodge"
  273. SkiLodge.Parent = ScriptsFrame
  274. SkiLodge.BackgroundColor3 = Color3.new(0, 0, 0)
  275. SkiLodge.Position = UDim2.new(0.0362694301, 0, 0.599056602, 0)
  276. SkiLodge.Size = UDim2.new(0, 106, 0, 33)
  277. SkiLodge.Font = Enum.Font.SciFi
  278. SkiLodge.FontSize = Enum.FontSize.Size28
  279. SkiLodge.Text = "Ski Lodge"
  280. SkiLodge.TextColor3 = Color3.new(0, 0.0666667, 1)
  281. SkiLodge.TextSize = 25
  282. SkiLodge.MouseButton1Click:connect(function()
  283. game.Players.LocalPlayer.Character:MoveTo(Vector3.new(1244, 62, 2306))end
  284. )
  285.  
  286. ClickTP.Name = "Click TP"
  287. ClickTP.Parent = ScriptsFrame
  288. ClickTP.BackgroundColor3 = Color3.new(0, 0, 0)
  289. ClickTP.Position = UDim2.new(0.0349740908, 0, 0.435534596, 0)
  290. ClickTP.Size = UDim2.new(0, 106, 0, 33)
  291. ClickTP.Font = Enum.Font.SciFi
  292. ClickTP.FontSize = Enum.FontSize.Size28
  293. ClickTP.Text = "Click TP"
  294. ClickTP.TextColor3 = Color3.new(0, 0.0666667, 1)
  295. ClickTP.TextSize = 25
  296. ClickTP.MouseButton1Click:connect(function()
  297. local acc=Instance.new("Tool",game.Players.LocalPlayer.Backpack)acc.RequiresHandle=false;acc.RobloxLocked=true;acc.Name="Tool"
  298. acc.ToolTip="Teleport Tool"
  299. acc.Equipped:connect(function(bcc)
  300. bcc.Button1Down:connect(function()
  301. if bcc.Target then
  302. game.Workspace:FindFirstChild(game.Players.LocalPlayer.Name).HumanoidRootPart.CFrame=(CFrame.new(bcc.Hit.x,
  303. bcc.Hit.y+5,bcc.Hit.z))
  304. end
  305. end)
  306. end)
  307. end)
  308. Palm.Name = "Palm"
  309. Palm.Parent = ScriptsFrame
  310. Palm.BackgroundColor3 = Color3.new(0, 0, 0)
  311. Palm.Position = UDim2.new(0.0349740908, 0, 0.278301895, 0)
  312. Palm.Size = UDim2.new(0, 106, 0, 33)
  313. Palm.Font = Enum.Font.SciFi
  314. Palm.FontSize = Enum.FontSize.Size28
  315. Palm.Text = "Palm"
  316. Palm.TextColor3 = Color3.new(0, 0.0666667, 1)
  317. Palm.TextSize = 25
  318. Palm.MouseButton1Click:connect(function()
  319. game.Players.LocalPlayer.Character:MoveTo(Vector3.new(2549, -5, -42))end
  320. )
  321.  
  322. GodMode.Name = "GodMode"
  323. GodMode.Parent = ScriptsFrame
  324. GodMode.BackgroundColor3 = Color3.new(0, 0, 0)
  325. GodMode.Position = UDim2.new(0.709844589, 0, 0.272012591, 0)
  326. GodMode.Size = UDim2.new(0, 106, 0, 33)
  327. GodMode.Font = Enum.Font.SciFi
  328. GodMode.FontSize = Enum.FontSize.Size28
  329. GodMode.Text = "GodMode"
  330. GodMode.TextColor3 = Color3.new(0, 0.0666667, 1)
  331. GodMode.TextSize = 25
  332. GodMode.MouseButton1Click:Connect(function()
  333. god()
  334. end)
  335.  
  336. StrangeMan.Name = "StrangeMan"
  337. StrangeMan.Parent = ScriptsFrame
  338. StrangeMan.BackgroundColor3 = Color3.new(0, 0, 0)
  339. StrangeMan.Position = UDim2.new(0.709844589, 0, 0.435534596, 0)
  340. StrangeMan.Size = UDim2.new(0, 106, 0, 33)
  341. StrangeMan.Font = Enum.Font.SciFi
  342. StrangeMan.FontSize = Enum.FontSize.Size28
  343. StrangeMan.Text = "ThePower"
  344. StrangeMan.TextColor3 = Color3.new(0, 0.0666667, 1)
  345. StrangeMan.TextSize = 25
  346. StrangeMan.MouseButton1Click:connect(function()
  347. game.Players.LocalPlayer.Character:MoveTo(Vector3.new(1061, 16, 1131))end
  348. )
  349.  
  350. woodrus.Name = "woodrus"
  351. woodrus.Parent = ScriptsFrame
  352. woodrus.BackgroundColor3 = Color3.new(0, 0, 0)
  353. woodrus.Position = UDim2.new(0.709844589, 0, 0.589622676, 0)
  354. woodrus.Size = UDim2.new(0, 106, 0, 33)
  355. woodrus.Font = Enum.Font.SciFi
  356. woodrus.FontSize = Enum.FontSize.Size28
  357. woodrus.Text = "WoodRUS"
  358. woodrus.TextColor3 = Color3.new(0, 0.0666667, 1)
  359. woodrus.TextSize = 25
  360. woodrus.MouseButton1Click:connect(function()
  361. game.Players.LocalPlayer.Character:MoveTo(Vector3.new(265,3,57))end
  362. )
  363.  
  364. EndTimes.Name = "EndTimes"
  365. EndTimes.Parent = ScriptsFrame
  366. EndTimes.BackgroundColor3 = Color3.new(0, 0, 0)
  367. EndTimes.Position = UDim2.new(0.709844589, 0, 0.75000006, 0)
  368. EndTimes.Size = UDim2.new(0, 106, 0, 33)
  369. EndTimes.Font = Enum.Font.SciFi
  370. EndTimes.FontSize = Enum.FontSize.Size28
  371. EndTimes.Text = "EndTime"
  372. EndTimes.TextColor3 = Color3.new(0, 0.0666667, 1)
  373. EndTimes.TextSize = 25
  374. EndTimes.MouseButton1Click:connect(function()
  375. game.Players.LocalPlayer.Character:MoveTo(Vector3.new(113, -214, -951))end
  376. )
  377.  
  378. bobshack.Name = "bobshack"
  379. bobshack.Parent = ScriptsFrame
  380. bobshack.BackgroundColor3 = Color3.new(0, 0, 0)
  381. bobshack.Position = UDim2.new(0.709844589, 0, 0.891509533, 0)
  382. bobshack.Size = UDim2.new(0, 106, 0, 33)
  383. bobshack.Font = Enum.Font.SciFi
  384. bobshack.FontSize = Enum.FontSize.Size28
  385. bobshack.Text = "BobShack"
  386. bobshack.TextColor3 = Color3.new(0, 0.0666667, 1)
  387. bobshack.TextSize = 25
  388. bobshack.MouseButton1Click:connect(function()
  389. game.Players.LocalPlayer.Character:MoveTo(Vector3.new(260, 8, -2542))end
  390. )
  391. Bringwood.Name = "Bringwood"
  392. Bringwood.Parent = ScriptsFrame
  393. Bringwood.BackgroundColor3 = Color3.new(0, 0, 0)
  394. Bringwood.Position = UDim2.new(0.0362694301, 0, 0.891509473, 0)
  395. Bringwood.Size = UDim2.new(0, 106, 0, 33)
  396. Bringwood.Font = Enum.Font.SciFi
  397. Bringwood.FontSize = Enum.FontSize.Size28
  398. Bringwood.Text = "BringWod"
  399. Bringwood.TextColor3 = Color3.new(0, 0.0666667, 1)
  400. Bringwood.TextSize = 25
  401. Bringwood.MouseButton1Down:connect(function()
  402. for _, Log in pairs(game.Workspace.LogModels:GetChildren()) do
  403. if Log.Name:sub(1,6) == "Loose_" and Log:findFirstChild("Owner") then
  404. if Log.Owner.Value == game.Players.LocalPlayer then
  405. Log:MoveTo(game.Players.LocalPlayer.Character.Torso.Position + Vector3.new(0,15,0))
  406. end
  407. end
  408. end
  409. end)
  410.  
  411. yourplot.Name = "yourplot"
  412. yourplot.Parent = ScriptsFrame
  413. yourplot.BackgroundColor3 = Color3.new(0, 0, 0)
  414. yourplot.Position = UDim2.new(0.37176162, 0, 0.891509414, 0)
  415. yourplot.Size = UDim2.new(0, 106, 0, 33)
  416. yourplot.Font = Enum.Font.SciFi
  417. yourplot.FontSize = Enum.FontSize.Size28
  418. yourplot.Text = "TP Plot"
  419. yourplot.TextColor3 = Color3.new(0, 0.0666667, 1)
  420. yourplot.TextSize = 25
  421. yourplot.MouseButton1Click:connect(function()
  422. for acc,bcc in
  423. pairs(game.Workspace.Properties:GetChildren())do
  424. if bcc.Owner.Value==game.Players.LocalPlayer then
  425. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame=
  426. bcc.OriginSquare.CFrame+Vector3.new(0,10,0)end end end)
  427. RAW Paste Data
  428.  
  429. -- Objects
  430.  
  431. local LumberTycoon2Gui = Instance.new("ScreenGui")
  432. local LoginFrame = Instance.new("Frame")
  433. local LT2Gui = Instance.new("TextLabel")
  434. local username = Instance.new("TextBox")
  435. local password = Instance.new("TextBox")
  436. local Loginbutton = Instance.new("TextButton")
  437. local Credits = Instance.new("TextLabel")
  438. local ScriptsFrame = Instance.new("Frame")
  439. local TextLabel = Instance.new("TextLabel")
  440. local exitbutton = Instance.new("TextButton")
  441. local BoxedCars = Instance.new("TextButton")
  442. local Swamp = Instance.new("TextButton")
  443. local Volcano = Instance.new("TextButton")
  444. local Spawn = Instance.new("TextButton")
  445. local Speed = Instance.new("TextButton")
  446. local Jpower = Instance.new("TextButton")
  447. local Cave = Instance.new("TextButton")
  448. local LinksLogic = Instance.new("TextButton")
  449. local SkiLodge = Instance.new("TextButton")
  450. local ClickTP = Instance.new("TextButton")
  451. local Palm = Instance.new("TextButton")
  452. local GodMode = Instance.new("TextButton")
  453. local StrangeMan = Instance.new("TextButton")
  454. local woodrus = Instance.new("TextButton")
  455. local EndTimes = Instance.new("TextButton")
  456. local bobshack = Instance.new("TextButton")
  457. local Bringwood = Instance.new("TextButton")
  458. local yourplot = Instance.new("TextButton")
  459.  
  460. -- Properties
  461.  
  462. LumberTycoon2Gui.Name = "Lumber Tycoon 2 Gui"
  463. LumberTycoon2Gui.Parent = game.CoreGui
  464.  
  465. LoginFrame.Name = "LoginFrame"
  466. LoginFrame.Parent = LumberTycoon2Gui
  467. LoginFrame.Active = true
  468. LoginFrame.BackgroundColor3 = Color3.new(0.427451, 0.427451, 0.427451)
  469. LoginFrame.BorderSizePixel = 2
  470. LoginFrame.Draggable = true
  471. LoginFrame.Position = UDim2.new(0.0814094841, 0, 0.0447154418, 0)
  472. LoginFrame.Selectable = true
  473. LoginFrame.Size = UDim2.new(0, 290, 0, 304)
  474.  
  475. LT2Gui.Name = "LT2 Gui"
  476. LT2Gui.Parent = LoginFrame
  477. LT2Gui.BackgroundColor3 = Color3.new(0.247059, 0.239216, 0.239216)
  478. LT2Gui.Size = UDim2.new(0, 290, 0, 44)
  479. LT2Gui.Font = Enum.Font.SciFi
  480. LT2Gui.FontSize = Enum.FontSize.Size14
  481. LT2Gui.Text = "Lumber Tycoon 2 GUI"
  482. LT2Gui.TextColor3 = Color3.new(0, 0, 1)
  483. LT2Gui.TextScaled = true
  484. LT2Gui.TextSize = 14
  485. LT2Gui.TextStrokeColor3 = Color3.new(1, 0, 0.0666667)
  486. LT2Gui.TextWrapped = true
  487.  
  488. username.Name = "username"
  489. username.Parent = LoginFrame
  490. username.BackgroundColor3 = Color3.new(0.27451, 0.27451, 0.27451)
  491. username.Position = UDim2.new(0.155172408, 0, 0.282894731, 0)
  492. username.Size = UDim2.new(0, 200, 0, 50)
  493. username.Font = Enum.Font.SourceSansBold
  494. username.FontSize = Enum.FontSize.Size28
  495. username.Text = "Username"
  496. username.TextColor3 = Color3.new(1, 1, 1)
  497. username.TextSize = 25
  498. username.TextXAlignment = Enum.TextXAlignment.Left
  499.  
  500. password.Name = "password"
  501. password.Parent = LoginFrame
  502. password.BackgroundColor3 = Color3.new(0.27451, 0.27451, 0.27451)
  503. password.Position = UDim2.new(0.155172408, 0, 0.536184192, 0)
  504. password.Size = UDim2.new(0, 200, 0, 50)
  505. password.Font = Enum.Font.SourceSansBold
  506. password.FontSize = Enum.FontSize.Size28
  507. password.Text = "Password"
  508. password.TextColor3 = Color3.new(1, 1, 1)
  509. password.TextSize = 25
  510. password.TextXAlignment = Enum.TextXAlignment.Left
  511.  
  512. Loginbutton.Name = "Loginbutton"
  513. Loginbutton.Parent = LoginFrame
  514. Loginbutton.BackgroundColor3 = Color3.new(0.27451, 0.27451, 0.27451)
  515. Loginbutton.BorderColor3 = Color3.new(0.27451, 0.27451, 0.27451)
  516. Loginbutton.Position = UDim2.new(0.258620679, 0, 0.782894731, 0)
  517. Loginbutton.Size = UDim2.new(0, 140, 0, 39)
  518. Loginbutton.Font = Enum.Font.SourceSansBold
  519. Loginbutton.FontSize = Enum.FontSize.Size24
  520. Loginbutton.Text = "Login"
  521. Loginbutton.TextColor3 = Color3.new(1, 1, 1)
  522. Loginbutton.TextSize = 20
  523. Loginbutton.TextWrapped = true
  524. Loginbutton.MouseButton1Down:connect(function()
  525. if username.Text == "KevinPlayLT2" and password.Text == "robloxuser" then
  526. LoginFrame.Visible = false
  527. ScriptsFrame.Visible = true
  528. end
  529.  
  530. end)
  531.  
  532. Credits.Name = "Credits"
  533. Credits.Parent = LoginFrame
  534. Credits.BackgroundColor3 = Color3.new(0.427451, 0.427451, 0.427451)
  535. Credits.BorderSizePixel = 0
  536. Credits.Position = UDim2.new(0, 0, 0.164473668, 0)
  537. Credits.Size = UDim2.new(0, 141, 0, 19)
  538. Credits.Font = Enum.Font.SourceSans
  539. Credits.FontSize = Enum.FontSize.Size14
  540. Credits.Text = "Made By: KevinPlayLT2"
  541. Credits.TextScaled = true
  542. Credits.TextSize = 14
  543. Credits.TextWrapped = true
  544. Credits.TextXAlignment = Enum.TextXAlignment.Left
  545.  
  546. ScriptsFrame.Name = "ScriptsFrame"
  547. ScriptsFrame.Parent = LumberTycoon2Gui
  548. ScriptsFrame.Active = true
  549. ScriptsFrame.BackgroundColor3 = Color3.new(0.439216, 0.729412, 0.909804)
  550. ScriptsFrame.Draggable = true
  551. ScriptsFrame.Position = UDim2.new(0.469623327, 0, 0.0257452596, 0)
  552. ScriptsFrame.Selectable = true
  553. ScriptsFrame.Size = UDim2.new(0, 386, 0, 318)
  554. ScriptsFrame.Style = Enum.FrameStyle.RobloxSquare
  555. ScriptsFrame.Visible = false
  556.  
  557. TextLabel.Parent = ScriptsFrame
  558. TextLabel.BackgroundColor3 = Color3.new(0.0588235, 0.0588235, 0.0588235)
  559. TextLabel.Position = UDim2.new(-0.0207253881, 0, -0.0251572318, 0)
  560. TextLabel.Size = UDim2.new(0, 386, 0, 33)
  561. TextLabel.Font = Enum.Font.SciFi
  562. TextLabel.FontSize = Enum.FontSize.Size14
  563. TextLabel.Text = "Lumber Tycoon 2 Gui"
  564. TextLabel.TextColor3 = Color3.new(0.0313726, 0, 0.996078)
  565. TextLabel.TextScaled = true
  566. TextLabel.TextSize = 14
  567. TextLabel.TextWrapped = true
  568.  
  569. exitbutton.Name = "exitbutton"
  570. exitbutton.Parent = ScriptsFrame
  571. exitbutton.BackgroundColor3 = Color3.new(0.0588235, 0.0588235, 0.0588235)
  572. exitbutton.BorderSizePixel = 0
  573. exitbutton.Position = UDim2.new(0.935233116, 0, -0.0251572318, 0)
  574. exitbutton.Size = UDim2.new(0, 32, 0, 33)
  575. exitbutton.Font = Enum.Font.SourceSans
  576. exitbutton.FontSize = Enum.FontSize.Size14
  577. exitbutton.Text = "X"
  578. exitbutton.TextColor3 = Color3.new(1, 1, 1)
  579. exitbutton.TextScaled = true
  580. exitbutton.TextSize = 14
  581. exitbutton.TextWrapped = true
  582. exitbutton.MouseButton1Down:connect(function()
  583. ScriptsFrame.Visible = false
  584. end
  585. )
  586.  
  587. BoxedCars.Name = "Boxed Cars"
  588. BoxedCars.Parent = ScriptsFrame
  589. BoxedCars.BackgroundColor3 = Color3.new(0, 0, 0)
  590. BoxedCars.Position = UDim2.new(0.0362694301, 0, 0.128930822, 0)
  591. BoxedCars.Size = UDim2.new(0, 106, 0, 33)
  592. BoxedCars.Font = Enum.Font.SciFi
  593. BoxedCars.FontSize = Enum.FontSize.Size28
  594. BoxedCars.Text = "BoxedCars"
  595. BoxedCars.TextColor3 = Color3.new(0, 0.0666667, 1)
  596. BoxedCars.TextSize = 25
  597. BoxedCars.MouseButton1Click:connect(function()
  598. game.Players.LocalPlayer.Character:MoveTo(Vector3.new(509, 3, -1463))end
  599. )
  600.  
  601. Swamp.Name = "Swamp"
  602. Swamp.Parent = ScriptsFrame
  603. Swamp.BackgroundColor3 = Color3.new(0, 0, 0)
  604. Swamp.Position = UDim2.new(0.709844589, 0, 0.130503148, 0)
  605. Swamp.Size = UDim2.new(0, 106, 0, 33)
  606. Swamp.Font = Enum.Font.SciFi
  607. Swamp.FontSize = Enum.FontSize.Size28
  608. Swamp.Text = "Swamp"
  609. Swamp.TextColor3 = Color3.new(0, 0.0666667, 1)
  610. Swamp.TextSize = 25
  611. Swamp.MouseButton1Click:connect(function()
  612. game.Players.LocalPlayer.Character:MoveTo(Vector3.new(-1209,132,-801))end
  613. )
  614.  
  615. Volcano.Name = "Volcano"
  616. Volcano.Parent = ScriptsFrame
  617. Volcano.BackgroundColor3 = Color3.new(0, 0, 0)
  618. Volcano.Position = UDim2.new(0.369170964, 0, 0.753144622, 0)
  619. Volcano.Size = UDim2.new(0, 106, 0, 33)
  620. Volcano.Font = Enum.Font.SciFi
  621. Volcano.FontSize = Enum.FontSize.Size28
  622. Volcano.Text = "Volcano"
  623. Volcano.TextColor3 = Color3.new(0, 0.0666667, 1)
  624. Volcano.TextSize = 25
  625. Volcano.MouseButton1Click:connect(function()
  626. game.Players.LocalPlayer.Character:MoveTo(Vector3.new(-1585,622,1140))end
  627. )
  628.  
  629. Spawn.Name = "Spawn"
  630. Spawn.Parent = ScriptsFrame
  631. Spawn.BackgroundColor3 = Color3.new(0, 0, 0)
  632. Spawn.Position = UDim2.new(0.369170964, 0, 0.599056602, 0)
  633. Spawn.Size = UDim2.new(0, 106, 0, 33)
  634. Spawn.Font = Enum.Font.SciFi
  635. Spawn.FontSize = Enum.FontSize.Size28
  636. Spawn.Text = "Spawn"
  637. Spawn.TextColor3 = Color3.new(0, 0.0666667, 1)
  638. Spawn.TextSize = 25
  639. Spawn.MouseButton1Click:connect(function()
  640. game.Players.LocalPlayer.Character:MoveTo(Vector3.new(155,3,74))end
  641. )
  642.  
  643. Speed.Name = "Speed"
  644. Speed.Parent = ScriptsFrame
  645. Speed.BackgroundColor3 = Color3.new(0, 0, 0)
  646. Speed.Position = UDim2.new(0.370466322, 0, 0.435534596, 0)
  647. Speed.Size = UDim2.new(0, 106, 0, 33)
  648. Speed.Font = Enum.Font.SciFi
  649. Speed.FontSize = Enum.FontSize.Size28
  650. Speed.Text = "Speed"
  651. Speed.TextColor3 = Color3.new(0, 0.0666667, 1)
  652. Speed.TextSize = 25
  653. Speed.MouseButton1Click:connect(function()while wait()do
  654. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed=200
  655. end
  656. end
  657. )
  658.  
  659. Jpower.Name = "Jpower"
  660. Jpower.Parent = ScriptsFrame
  661. Jpower.BackgroundColor3 = Color3.new(0, 0, 0)
  662. Jpower.Position = UDim2.new(0.369170964, 0, 0.278301895, 0)
  663. Jpower.Size = UDim2.new(0, 106, 0, 33)
  664. Jpower.Font = Enum.Font.SciFi
  665. Jpower.FontSize = Enum.FontSize.Size28
  666. Jpower.Text = "Jpower"
  667. Jpower.TextColor3 = Color3.new(0, 0.0666667, 1)
  668. Jpower.TextSize = 25
  669. Jpower.MouseButton1Click:connect(function()while wait()do
  670. game.Players.LocalPlayer.Character.Humanoid.JumpPower=100 end end)
  671.  
  672. Cave.Name = "Cave"
  673. Cave.Parent = ScriptsFrame
  674. Cave.BackgroundColor3 = Color3.new(0, 0, 0)
  675. Cave.Position = UDim2.new(0.369170964, 0, 0.128930822, 0)
  676. Cave.Size = UDim2.new(0, 106, 0, 33)
  677. Cave.Font = Enum.Font.SciFi
  678. Cave.FontSize = Enum.FontSize.Size28
  679. Cave.Text = "Cave"
  680. Cave.TextColor3 = Color3.new(0, 0.0666667, 1)
  681. Cave.TextSize = 25
  682. Cave.MouseButton1Click:connect(function()
  683. game.Players.LocalPlayer.Character:MoveTo(Vector3.new(3581,-179,430))end
  684. )
  685.  
  686. LinksLogic.Name = "Links Logic"
  687. LinksLogic.Parent = ScriptsFrame
  688. LinksLogic.BackgroundColor3 = Color3.new(0, 0, 0)
  689. LinksLogic.Position = UDim2.new(0.0362694301, 0, 0.75, 0)
  690. LinksLogic.Size = UDim2.new(0, 106, 0, 33)
  691. LinksLogic.Font = Enum.Font.SciFi
  692. LinksLogic.FontSize = Enum.FontSize.Size28
  693. LinksLogic.Text = "LinkLogic"
  694. LinksLogic.TextColor3 = Color3.new(0, 0.0666667, 1)
  695. LinksLogic.TextSize = 25
  696. LinksLogic.MouseButton1Click:connect(function()
  697. game.Players.LocalPlayer.Character:MoveTo(Vector3.new(4607,7.5,-798))end
  698. )
  699.  
  700. SkiLodge.Name = "Ski Lodge"
  701. SkiLodge.Parent = ScriptsFrame
  702. SkiLodge.BackgroundColor3 = Color3.new(0, 0, 0)
  703. SkiLodge.Position = UDim2.new(0.0362694301, 0, 0.599056602, 0)
  704. SkiLodge.Size = UDim2.new(0, 106, 0, 33)
  705. SkiLodge.Font = Enum.Font.SciFi
  706. SkiLodge.FontSize = Enum.FontSize.Size28
  707. SkiLodge.Text = "Ski Lodge"
  708. SkiLodge.TextColor3 = Color3.new(0, 0.0666667, 1)
  709. SkiLodge.TextSize = 25
  710. SkiLodge.MouseButton1Click:connect(function()
  711. game.Players.LocalPlayer.Character:MoveTo(Vector3.new(1244, 62, 2306))end
  712. )
  713.  
  714. ClickTP.Name = "Click TP"
  715. ClickTP.Parent = ScriptsFrame
  716. ClickTP.BackgroundColor3 = Color3.new(0, 0, 0)
  717. ClickTP.Position = UDim2.new(0.0349740908, 0, 0.435534596, 0)
  718. ClickTP.Size = UDim2.new(0, 106, 0, 33)
  719. ClickTP.Font = Enum.Font.SciFi
  720. ClickTP.FontSize = Enum.FontSize.Size28
  721. ClickTP.Text = "Click TP"
  722. ClickTP.TextColor3 = Color3.new(0, 0.0666667, 1)
  723. ClickTP.TextSize = 25
  724. ClickTP.MouseButton1Click:connect(function()
  725. local acc=Instance.new("Tool",game.Players.LocalPlayer.Backpack)acc.RequiresHandle=false;acc.RobloxLocked=true;acc.Name="Tool"
  726. acc.ToolTip="Teleport Tool"
  727. acc.Equipped:connect(function(bcc)
  728. bcc.Button1Down:connect(function()
  729. if bcc.Target then
  730. game.Workspace:FindFirstChild(game.Players.LocalPlayer.Name).HumanoidRootPart.CFrame=(CFrame.new(bcc.Hit.x,
  731. bcc.Hit.y+5,bcc.Hit.z))
  732. end
  733. end)
  734. end)
  735. end)
  736. Palm.Name = "Palm"
  737. Palm.Parent = ScriptsFrame
  738. Palm.BackgroundColor3 = Color3.new(0, 0, 0)
  739. Palm.Position = UDim2.new(0.0349740908, 0, 0.278301895, 0)
  740. Palm.Size = UDim2.new(0, 106, 0, 33)
  741. Palm.Font = Enum.Font.SciFi
  742. Palm.FontSize = Enum.FontSize.Size28
  743. Palm.Text = "Palm"
  744. Palm.TextColor3 = Color3.new(0, 0.0666667, 1)
  745. Palm.TextSize = 25
  746. Palm.MouseButton1Click:connect(function()
  747. game.Players.LocalPlayer.Character:MoveTo(Vector3.new(2549, -5, -42))end
  748. )
  749.  
  750. GodMode.Name = "GodMode"
  751. GodMode.Parent = ScriptsFrame
  752. GodMode.BackgroundColor3 = Color3.new(0, 0, 0)
  753. GodMode.Position = UDim2.new(0.709844589, 0, 0.272012591, 0)
  754. GodMode.Size = UDim2.new(0, 106, 0, 33)
  755. GodMode.Font = Enum.Font.SciFi
  756. GodMode.FontSize = Enum.FontSize.Size28
  757. GodMode.Text = "GodMode"
  758. GodMode.TextColor3 = Color3.new(0, 0.0666667, 1)
  759. GodMode.TextSize = 25
  760. GodMode.MouseButton1Click:Connect(function()
  761. god()
  762. end)
  763.  
  764. StrangeMan.Name = "StrangeMan"
  765. StrangeMan.Parent = ScriptsFrame
  766. StrangeMan.BackgroundColor3 = Color3.new(0, 0, 0)
  767. StrangeMan.Position = UDim2.new(0.709844589, 0, 0.435534596, 0)
  768. StrangeMan.Size = UDim2.new(0, 106, 0, 33)
  769. StrangeMan.Font = Enum.Font.SciFi
  770. StrangeMan.FontSize = Enum.FontSize.Size28
  771. StrangeMan.Text = "ThePower"
  772. StrangeMan.TextColor3 = Color3.new(0, 0.0666667, 1)
  773. StrangeMan.TextSize = 25
  774. StrangeMan.MouseButton1Click:connect(function()
  775. game.Players.LocalPlayer.Character:MoveTo(Vector3.new(1061, 16, 1131))end
  776. )
  777.  
  778. woodrus.Name = "woodrus"
  779. woodrus.Parent = ScriptsFrame
  780. woodrus.BackgroundColor3 = Color3.new(0, 0, 0)
  781. woodrus.Position = UDim2.new(0.709844589, 0, 0.589622676, 0)
  782. woodrus.Size = UDim2.new(0, 106, 0, 33)
  783. woodrus.Font = Enum.Font.SciFi
  784. woodrus.FontSize = Enum.FontSize.Size28
  785. woodrus.Text = "WoodRUS"
  786. woodrus.TextColor3 = Color3.new(0, 0.0666667, 1)
  787. woodrus.TextSize = 25
  788. woodrus.MouseButton1Click:connect(function()
  789. game.Players.LocalPlayer.Character:MoveTo(Vector3.new(265,3,57))end
  790. )
  791.  
  792. EndTimes.Name = "EndTimes"
  793. EndTimes.Parent = ScriptsFrame
  794. EndTimes.BackgroundColor3 = Color3.new(0, 0, 0)
  795. EndTimes.Position = UDim2.new(0.709844589, 0, 0.75000006, 0)
  796. EndTimes.Size = UDim2.new(0, 106, 0, 33)
  797. EndTimes.Font = Enum.Font.SciFi
  798. EndTimes.FontSize = Enum.FontSize.Size28
  799. EndTimes.Text = "EndTime"
  800. EndTimes.TextColor3 = Color3.new(0, 0.0666667, 1)
  801. EndTimes.TextSize = 25
  802. EndTimes.MouseButton1Click:connect(function()
  803. game.Players.LocalPlayer.Character:MoveTo(Vector3.new(113, -214, -951))end
  804. )
  805.  
  806. bobshack.Name = "bobshack"
  807. bobshack.Parent = ScriptsFrame
  808. bobshack.BackgroundColor3 = Color3.new(0, 0, 0)
  809. bobshack.Position = UDim2.new(0.709844589, 0, 0.891509533, 0)
  810. bobshack.Size = UDim2.new(0, 106, 0, 33)
  811. bobshack.Font = Enum.Font.SciFi
  812. bobshack.FontSize = Enum.FontSize.Size28
  813. bobshack.Text = "BobShack"
  814. bobshack.TextColor3 = Color3.new(0, 0.0666667, 1)
  815. bobshack.TextSize = 25
  816. bobshack.MouseButton1Click:connect(function()
  817. game.Players.LocalPlayer.Character:MoveTo(Vector3.new(260, 8, -2542))end
  818. )
  819. Bringwood.Name = "Bringwood"
  820. Bringwood.Parent = ScriptsFrame
  821. Bringwood.BackgroundColor3 = Color3.new(0, 0, 0)
  822. Bringwood.Position = UDim2.new(0.0362694301, 0, 0.891509473, 0)
  823. Bringwood.Size = UDim2.new(0, 106, 0, 33)
  824. Bringwood.Font = Enum.Font.SciFi
  825. Bringwood.FontSize = Enum.FontSize.Size28
  826. Bringwood.Text = "BringWod"
  827. Bringwood.TextColor3 = Color3.new(0, 0.0666667, 1)
  828. Bringwood.TextSize = 25
  829. Bringwood.MouseButton1Down:connect(function()
  830. for _, Log in pairs(game.Workspace.LogModels:GetChildren()) do
  831. if Log.Name:sub(1,6) == "Loose_" and Log:findFirstChild("Owner") then
  832. if Log.Owner.Value == game.Players.LocalPlayer then
  833. Log:MoveTo(game.Players.LocalPlayer.Character.Torso.Position + Vector3.new(0,15,0))
  834. end
  835. end
  836. end
  837. end)
  838.  
  839. yourplot.Name = "yourplot"
  840. yourplot.Parent = ScriptsFrame
  841. yourplot.BackgroundColor3 = Color3.new(0, 0, 0)
  842. yourplot.Position = UDim2.new(0.37176162, 0, 0.891509414, 0)
  843. yourplot.Size = UDim2.new(0, 106, 0, 33)
  844. yourplot.Font = Enum.Font.SciFi
  845. yourplot.FontSize = Enum.FontSize.Size28
  846. yourplot.Text = "TP Plot"
  847. yourplot.TextColor3 = Color3.new(0, 0.0666667, 1)
  848. yourplot.TextSize = 25
  849. yourplot.MouseButton1Click:connect(function()
  850. for acc,bcc in
  851. pairs(game.Workspace.Properties:GetChildren())do
  852. if bcc.Owner.Value==game.Players.LocalPlayer then
  853. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame=
  854. bcc.OriginSquare.CFrame+Vector3.new(0,10,0)end end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement