HaxRoblox

LOKI DOWNLOAD FOR FRANKDOOD

Apr 2nd, 2017
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.68 KB | None | 0 0
  1. Loki Download: https://mega.nz/#!zkN0XYpK!NbUKFiYDQkzzvBQ69XpCKxVId3nqOS5G0pPXCZR63LA
  2.  
  3. Wood Teleport Script :
  4.  
  5. --Errors:
  6. System = {}
  7. System.Create = function(a, c)
  8. local e = Instance.new(a)
  9. for d, a in pairs(c) do
  10. local b, a = ypcall(function()
  11. return e[d]
  12. end)
  13. if b then
  14. e[d] = c[d]
  15. end
  16. end
  17. return e
  18. end
  19. function b(d, b)
  20. local c = getfenv(d)
  21. local a = setmetatable({}, {
  22. __index = function(a, a)
  23. if a:lower() == 'script' then
  24. return b
  25. else
  26. return c[a]
  27. end
  28. end
  29. })
  30. setfenv(d, a)
  31. ypcall(function()
  32. d()
  33. end)
  34. end
  35. c = {}
  36. o1 = System.Create("ScreenGui",{
  37. ["Parent"] = game.Players.LocalPlayer.PlayerGui,
  38. })
  39. o2 = System.Create("Frame",{
  40. ["Parent"] = o1,
  41. ["Transparency"] = 0.5,
  42. ["Position"] = UDim2.new(0,0,0.44999998807907,0),
  43. ["Size"] = UDim2.new(0.20000000298023,0,0.10000000149012,0),
  44. ["BackgroundColor3"] = Color3.new(0, 0, 0),
  45. ["BackgroundTransparency"] = 0.5,
  46. })
  47. o3 = System.Create("TextButton",{
  48. ["Name"] = "Tele",
  49. ["Parent"] = o2,
  50. ["Transparency"] = 0.5,
  51. ["Position"] = UDim2.new(0.10000000149012,0,0,0),
  52. ["Size"] = UDim2.new(0.80000001192093,0,0.30000001192093,0),
  53. ["Text"] = "Teleport",
  54. ["BackgroundColor3"] = Color3.new(0, 0, 0),
  55. ["BackgroundTransparency"] = 0.5,
  56. ["Font"] = Enum.Font.SourceSans,
  57. ["FontSize"] = Enum.FontSize.Size14,
  58. ["TextColor3"] = Color3.new(1, 1, 1),
  59. })
  60. o5 = System.Create("TextBox",{
  61. ["Name"] = "Place",
  62. ["Parent"] = o2,
  63. ["Transparency"] = 0.5,
  64. ["Position"] = UDim2.new(0.20000000298023,0,0.30000001192093,0),
  65. ["Size"] = UDim2.new(0.60000002384186,0,0.30000001192093,0),
  66. ["Text"] = "Spawn",
  67. ["BackgroundColor3"] = Color3.new(0, 0, 0),
  68. ["BackgroundTransparency"] = 0.5,
  69. ["Font"] = Enum.Font.SourceSans,
  70. ["FontSize"] = Enum.FontSize.Size14,
  71. ["TextColor3"] = Color3.new(1, 1, 1),
  72. })
  73. o6 = System.Create("TextButton",{
  74. ["Name"] = "Teleport Wood",
  75. ["Parent"] = o2,
  76. ["Transparency"] = 0.5,
  77. ["Position"] = UDim2.new(0.10000000149012,0,0.60000002384186,0),
  78. ["Size"] = UDim2.new(0.80000001192093,0,0.40000000596046,0),
  79. ["Text"] = "Teleport Wood",
  80. ["BackgroundColor3"] = Color3.new(25, 25, 25),
  81. ["BackgroundTransparency"] = 0.5,
  82. ["Font"] = Enum.Font.SourceSans,
  83. ["FontSize"] = Enum.FontSize.Size14,
  84. ["TextColor3"] = Color3.new(1, 1, 1),
  85. })
  86.  
  87. player = game.Players.LocalPlayer
  88. function Teleport(pos)
  89. service.Players.LocalPlayer.Character:MoveTo(pos)
  90. end
  91. local WayPoints = {
  92. ["Spawn"] = Vector3.new(155, 3, 74),
  93. ["Wood R Us"] = Vector3.new(265, 3, 57),
  94. ["Land Store"] = Vector3.new(258, 3, -99),
  95. ["Dock"] = Vector3.new(1114, -1, -197),
  96. ["Link's Logic"] = Vector3.new(4605, 3, -727),
  97. ["Cave"] = Vector3.new(3581, -179, 430),
  98. ["Volcano"] = Vector3.new(-1585, 622, 1140),
  99. ["Swamp"] = Vector3.new(-1209, 132, -801),
  100. ["Palm Island"] = Vector3.new(2549, -5, -42),
  101. ["Fancy Furnishings"] = Vector3.new(491, 3, -1720),
  102. ["Boxed Cars"] = Vector3.new(509, 3, -1463),
  103. ["Fine Arts Shop"] = Vector3.new(5207, -166, 719),
  104. ["Bob's Shack"] = Vector3.new(260, 8, -2542),
  105. ["Bridge"] = Vector3.new(113, 11, -977),
  106. ["End Times"] = Vector3.new(113, -214, -951),
  107. ["Shrine of Sight"] = Vector3.new(-1600, 195, 919),
  108. ["The Den"] = Vector3.new(323, 41, 1930),
  109. }
  110. player.PlayerGui.ScreenGui.Frame.Tele.MouseButton1Down:connect(function()
  111. print(WayPoints[player.PlayerGui.ScreenGui.Frame.Place.Text])
  112. player.Character:MoveTo(WayPoints[player.PlayerGui.ScreenGui.Frame.Place.Text])
  113. end)
  114. player.PlayerGui.ScreenGui.Frame["Teleport Wood"].MouseButton1Down:connect(function()
  115. for _, Log in pairs(game.Workspace.LogModels:GetChildren()) do
  116. if Log.Name:sub(1, 6) == "Loose_" and Log:findFirstChild("Owner") then
  117. if Log.Owner.Value == game.Players.LocalPlayer then
  118. Log:MoveTo(game.Players.LocalPlayer.Character.Torso.Position + Vector3.new(0, 4, 0))
  119. end
  120. end
  121. end
  122. end)
Add Comment
Please, Sign In to add comment