GustavoDestroyer

Lista de Teleportes [Lumber Tycoon 2]

Dec 1st, 2019
290
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 9.30 KB | None | 0 0
  1. --[[
  2.     AVISO
  3. Esse Script não funciona muito bem no exploit com API WeAreDevs
  4. Lista de Exploits Free(Que roda o Script):
  5. Proxo
  6. Lista de Exploits Pagos(Os Pagos não tem nenhum bug, Roda todos os Scripts bem):
  7. Synapse X, Protosmasher
  8.  
  9. -----------------------
  10. O Lumber Tycoon 2 teve uma atualização que adicionou um *Anti-teleporte*, então eu não vou tirar o Script do ar mas não
  11. recomendo que usem! Esperem até que eu adicione um Bypass!
  12. -----------------------
  13. Bypass: Não
  14. ]]--
  15.  
  16. local ListadeTeleportes = Instance.new("ScreenGui")
  17. local Titulo = Instance.new("Frame")
  18. local Lista = Instance.new("ScrollingFrame")
  19. local BoxedCars = Instance.new("TextButton")
  20. local Cave = Instance.new("TextButton")
  21. local BobsShack = Instance.new("TextButton")
  22. local Volcano = Instance.new("TextButton")
  23. local Dock = Instance.new("TextButton")
  24. local PalmIsland = Instance.new("TextButton")
  25. local LinkLogics = Instance.new("TextButton")
  26. local Swamp = Instance.new("TextButton")
  27. local SPAWN = Instance.new("TextButton")
  28. local LandStore = Instance.new("TextButton")
  29. local WoodRUs = Instance.new("TextButton")
  30. local TextLabel = Instance.new("TextLabel")
  31. local ImageButton = Instance.new("ImageButton")
  32. local Abrir = Instance.new("TextButton")
  33.  
  34. TPLinkLogics = CFrame.new(4588, 8, -780)
  35. TPSpawn = CFrame.new(184, 4, 53)
  36. TPCave = CFrame.new(3581, -179, 430)
  37. TPBobsShack = CFrame.new(260, 8, -2542)
  38. TPBoxedCars = CFrame.new(509, 3, -1463)
  39. TPDock = CFrame.new(1114, -1, -1970)
  40. TPLandStore = CFrame.new(258, 3, -99)
  41. TPPalmIsland = CFrame.new(2549, -5, -42)
  42. TPSwamp = CFrame.new(-1209, 132, -801)
  43. TPVolcano = CFrame.new(-1585, 622, 1140)
  44. TPWoodRUs = CFrame.new(265, 3, 57)
  45.  
  46. ListadeTeleportes.Name = "Lista de Teleportes"
  47. ListadeTeleportes.Parent = game.Players.LocalPlayer.PlayerGui
  48. ListadeTeleportes.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  49.  
  50. Titulo.Name = "Titulo"
  51. Titulo.Parent = ListadeTeleportes
  52. Titulo.BackgroundColor3 = Color3.new(1, 1, 1)
  53. Titulo.BorderSizePixel = 0
  54. Titulo.Position = UDim2.new(1, -212, 0.5, -250)
  55. Titulo.Size = UDim2.new(0, 212, 0, 500)
  56.  
  57. Lista.Name = "Lista"
  58. Lista.Parent = Titulo
  59. Lista.BackgroundColor3 = Color3.new(1, 0.933333, 0)
  60. Lista.BorderSizePixel = 0
  61. Lista.Position = UDim2.new(0, 0, 0.100000001, 0)
  62. Lista.Size = UDim2.new(0, 212, 0, 450)
  63. Lista.CanvasSize = UDim2.new(0, 0, 0, 550)
  64.  
  65. BoxedCars.Name = "BoxedCars"
  66. BoxedCars.Parent = Lista
  67. BoxedCars.BackgroundColor3 = Color3.new(1, 1, 0)
  68. BoxedCars.BorderSizePixel = 0
  69. BoxedCars.Position = UDim2.new(0, 0, 1, -200)
  70. BoxedCars.Size = UDim2.new(0, 200, 0, 50)
  71. BoxedCars.Font = Enum.Font.SourceSans
  72. BoxedCars.Text = "Boxed Cars"
  73. BoxedCars.TextColor3 = Color3.new(1, 1, 1)
  74. BoxedCars.TextScaled = true
  75. BoxedCars.TextSize = 14
  76. BoxedCars.TextStrokeTransparency = 0
  77. BoxedCars.TextWrapped = true
  78. BoxedCars.MouseButton1Click:Connect(function()
  79.     game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = TPBoxedCars
  80. end)
  81.  
  82. Cave.Name = "Cave"
  83. Cave.Parent = Lista
  84. Cave.BackgroundColor3 = Color3.new(1, 1, 0)
  85. Cave.BorderSizePixel = 0
  86. Cave.Position = UDim2.new(0, 0, 1, -300)
  87. Cave.Size = UDim2.new(0, 200, 0, 50)
  88. Cave.Font = Enum.Font.SourceSans
  89. Cave.Text = "Cave"
  90. Cave.TextColor3 = Color3.new(1, 1, 1)
  91. Cave.TextScaled = true
  92. Cave.TextSize = 14
  93. Cave.TextStrokeTransparency = 0
  94. Cave.TextWrapped = true
  95. Cave.MouseButton1Click:Connect(function()
  96.     game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = TPCave
  97. end)
  98.  
  99. BobsShack.Name = "BobsShack"
  100. BobsShack.Parent = Lista
  101. BobsShack.BackgroundColor3 = Color3.new(1, 1, 0)
  102. BobsShack.BorderSizePixel = 0
  103. BobsShack.Position = UDim2.new(0, 0, 1, -250)
  104. BobsShack.Size = UDim2.new(0, 200, 0, 50)
  105. BobsShack.Font = Enum.Font.SourceSans
  106. BobsShack.Text = "Bobs Shack"
  107. BobsShack.TextColor3 = Color3.new(1, 1, 1)
  108. BobsShack.TextScaled = true
  109. BobsShack.TextSize = 14
  110. BobsShack.TextStrokeTransparency = 0
  111. BobsShack.TextWrapped = true
  112. BobsShack.MouseButton1Click:Connect(function()
  113.     game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = TPBobsShack
  114. end)
  115.  
  116. Volcano.Name = "Volcano"
  117. Volcano.Parent = Lista
  118. Volcano.BackgroundColor3 = Color3.new(1, 1, 0)
  119. Volcano.BorderSizePixel = 0
  120. Volcano.Position = UDim2.new(0, 0, 1, -500)
  121. Volcano.Size = UDim2.new(0, 200, 0, 50)
  122. Volcano.Font = Enum.Font.SourceSans
  123. Volcano.Text = "Volcano"
  124. Volcano.TextColor3 = Color3.new(1, 1, 1)
  125. Volcano.TextScaled = true
  126. Volcano.TextSize = 14
  127. Volcano.TextStrokeTransparency = 0
  128. Volcano.TextWrapped = true
  129. Volcano.MouseButton1Click:Connect(function()
  130.     game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = TPVolcano
  131. end)
  132.  
  133. Dock.Name = "Dock"
  134. Dock.Parent = Lista
  135. Dock.BackgroundColor3 = Color3.new(1, 1, 0)
  136. Dock.BorderSizePixel = 0
  137. Dock.Position = UDim2.new(0, 0, 1, -150)
  138. Dock.Size = UDim2.new(0, 200, 0, 50)
  139. Dock.Font = Enum.Font.SourceSans
  140. Dock.Text = "Dock"
  141. Dock.TextColor3 = Color3.new(1, 1, 1)
  142. Dock.TextScaled = true
  143. Dock.TextSize = 14
  144. Dock.TextStrokeTransparency = 0
  145. Dock.TextWrapped = true
  146. Dock.MouseButton1Click:Connect(function()
  147.     game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = TPDock
  148. end)
  149.  
  150. PalmIsland.Name = "PalmIsland"
  151. PalmIsland.Parent = Lista
  152. PalmIsland.BackgroundColor3 = Color3.new(1, 1, 0)
  153. PalmIsland.BorderSizePixel = 0
  154. PalmIsland.Position = UDim2.new(0, 0, 1, -100)
  155. PalmIsland.Size = UDim2.new(0, 200, 0, 50)
  156. PalmIsland.Font = Enum.Font.SourceSans
  157. PalmIsland.Text = "Palm Island"
  158. PalmIsland.TextColor3 = Color3.new(1, 1, 1)
  159. PalmIsland.TextScaled = true
  160. PalmIsland.TextSize = 14
  161. PalmIsland.TextStrokeTransparency = 0
  162. PalmIsland.TextWrapped = true
  163. PalmIsland.MouseButton1Click:Connect(function()
  164.     game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = TPPalmIsland
  165. end)
  166.  
  167. LinkLogics.Name = "LinkLogics"
  168. LinkLogics.Parent = Lista
  169. LinkLogics.BackgroundColor3 = Color3.new(1, 1, 0)
  170. LinkLogics.BorderSizePixel = 0
  171. LinkLogics.Position = UDim2.new(0, 0, 1, -350)
  172. LinkLogics.Size = UDim2.new(0, 200, 0, 50)
  173. LinkLogics.Font = Enum.Font.SourceSans
  174. LinkLogics.Text = "Link Logic's"
  175. LinkLogics.TextColor3 = Color3.new(1, 1, 1)
  176. LinkLogics.TextScaled = true
  177. LinkLogics.TextSize = 14
  178. LinkLogics.TextStrokeTransparency = 0
  179. LinkLogics.TextWrapped = true
  180. LinkLogics.MouseButton1Click:Connect(function()
  181.     game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = TPLinkLogics
  182. end)
  183.  
  184. Swamp.Name = "Swamp"
  185. Swamp.Parent = Lista
  186. Swamp.BackgroundColor3 = Color3.new(1, 1, 0)
  187. Swamp.BorderSizePixel = 0
  188. Swamp.Position = UDim2.new(0, 0, 1, -50)
  189. Swamp.Size = UDim2.new(0, 200, 0, 50)
  190. Swamp.Font = Enum.Font.SourceSans
  191. Swamp.Text = "Swamp"
  192. Swamp.TextColor3 = Color3.new(1, 1, 1)
  193. Swamp.TextScaled = true
  194. Swamp.TextSize = 14
  195. Swamp.TextStrokeTransparency = 0
  196. Swamp.TextWrapped = true
  197. Swamp.MouseButton1Click:Connect(function()
  198.     game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = TPSwamp
  199. end)
  200.  
  201. SPAWN.Name = "SPAWN"
  202. SPAWN.Parent = Lista
  203. SPAWN.BackgroundColor3 = Color3.new(1, 1, 0)
  204. SPAWN.BorderSizePixel = 0
  205. SPAWN.Position = UDim2.new(0, 0, 1, -450)
  206. SPAWN.Size = UDim2.new(0, 200, 0, 50)
  207. SPAWN.Font = Enum.Font.SourceSans
  208. SPAWN.Text = "SPAWN"
  209. SPAWN.TextColor3 = Color3.new(1, 1, 1)
  210. SPAWN.TextScaled = true
  211. SPAWN.TextSize = 14
  212. SPAWN.TextStrokeTransparency = 0
  213. SPAWN.TextWrapped = true
  214. SPAWN.MouseButton1Click:Connect(function()
  215.     game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = TPSpawn
  216. end)
  217.  
  218. LandStore.Name = "LandStore"
  219. LandStore.Parent = Lista
  220. LandStore.BackgroundColor3 = Color3.new(1, 1, 0)
  221. LandStore.BorderSizePixel = 0
  222. LandStore.Position = UDim2.new(0, 0, 1, -400)
  223. LandStore.Size = UDim2.new(0, 200, 0, 50)
  224. LandStore.Font = Enum.Font.SourceSans
  225. LandStore.Text = "Land Store"
  226. LandStore.TextColor3 = Color3.new(1, 1, 1)
  227. LandStore.TextScaled = true
  228. LandStore.TextSize = 14
  229. LandStore.TextStrokeTransparency = 0
  230. LandStore.TextWrapped = true
  231. LandStore.MouseButton1Click:Connect(function()
  232.     game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = TPLandStore
  233. end)
  234.  
  235. WoodRUs.Name = "WoodRUs"
  236. WoodRUs.Parent = Lista
  237. WoodRUs.BackgroundColor3 = Color3.new(1, 1, 0)
  238. WoodRUs.BorderSizePixel = 0
  239. WoodRUs.Position = UDim2.new(0, 0, 1, -550)
  240. WoodRUs.Size = UDim2.new(0, 200, 0, 50)
  241. WoodRUs.Font = Enum.Font.SourceSans
  242. WoodRUs.Text = "Wood RUs"
  243. WoodRUs.TextColor3 = Color3.new(1, 1, 1)
  244. WoodRUs.TextScaled = true
  245. WoodRUs.TextSize = 14
  246. WoodRUs.TextStrokeTransparency = 0
  247. WoodRUs.TextWrapped = true
  248. WoodRUs.MouseButton1Click:Connect(function()
  249.     game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = TPWoodRUs
  250. end)
  251.  
  252. TextLabel.Parent = Titulo
  253. TextLabel.BackgroundColor3 = Color3.new(1, 0.85098, 0)
  254. TextLabel.BorderSizePixel = 0
  255. TextLabel.Size = UDim2.new(1, -50, 0, 50)
  256. TextLabel.Font = Enum.Font.SourceSansBold
  257. TextLabel.Text = "LISTA DE TELEPORTES"
  258. TextLabel.TextColor3 = Color3.new(1, 1, 1)
  259. TextLabel.TextScaled = true
  260. TextLabel.TextSize = 14
  261. TextLabel.TextWrapped = true
  262.  
  263. ImageButton.Parent = Titulo
  264. ImageButton.BackgroundColor3 = Color3.new(1, 0.85098, 0)
  265. ImageButton.BorderSizePixel = 0
  266. ImageButton.Position = UDim2.new(1, -50, 0, 0)
  267. ImageButton.Size = UDim2.new(0, 50, 0, 50)
  268. ImageButton.Image = "rbxassetid://247421309"
  269. ImageButton.MouseButton1Click:Connect(function()
  270.     Titulo.Visible = false
  271.     Abrir.Visible = true
  272. end)
  273.  
  274. Abrir.Name = "Abrir"
  275. Abrir.Parent = ListadeTeleportes
  276. Abrir.BackgroundColor3 = Color3.new(1, 0.933333, 0)
  277. Abrir.Position = UDim2.new(1, -100, 0.5, -25)
  278. Abrir.Size = UDim2.new(0, 100, 0, 50)
  279. Abrir.Font = Enum.Font.SourceSansBold
  280. Abrir.Text = "ABRIR"
  281. Abrir.TextColor3 = Color3.new(1, 1, 1)
  282. Abrir.Visible = false
  283. Abrir.TextSize = 30
  284. Abrir.TextStrokeTransparency = 0
  285. Abrir.TextWrapped = true
  286. Abrir.MouseButton1Click:Connect(function()
  287.     Titulo.Visible = true
  288.     Abrir.Visible = false
  289. end)
Add Comment
Please, Sign In to add comment