Advertisement
Guest User

Untitled

a guest
Jan 22nd, 2019
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.50 KB | None | 0 0
  1.  
  2. player.MouseButton1Click:connect(function()
  3. PlayerScreen.Visible = true
  4. TeleportsScreen.Visible = false
  5. BuildingScreen.Visible = false
  6. ToolsScreen.Visible = false
  7. end)
  8.  
  9. teleports.MouseButton1Click:connect(function()
  10. PlayerScreen.Visible = false
  11. TeleportsScreen.Visible = true
  12. BuildingScreen.Visible = false
  13. ToolsScreen.Visible = false
  14. end)
  15.  
  16. building.MouseButton1Click:connect(function()
  17. PlayerScreen.Visible = false
  18. TeleportsScreen.Visible = false
  19. BuildingScreen.Visible = true
  20. ToolsScreen.Visible = false
  21. end)
  22.  
  23. tools.MouseButton1Click:connect(function()
  24. PlayerScreen.Visible = false
  25. TeleportsScreen.Visible = false
  26. BuildingScreen.Visible = false
  27. ToolsScreen.Visible = true
  28. end)
  29.  
  30. playmusicplayer.MouseButton1Click:connect(function()
  31. local s = Instance.new("Sound")
  32.  
  33. s.Name = "Sound"
  34. s.SoundId = "rbxassetid://" .. musicidplayer.Text
  35. s.Volume = 2
  36. s.Looped = true
  37. s.archivable = false
  38.  
  39. s.Parent = game.Workspace
  40.  
  41. wait(3)
  42.  
  43. s:play()
  44.  
  45. end)
  46.  
  47. blacklistplayer.MouseButton1Click:connect(function()
  48.  
  49. Client = game.ReplicatedStorage.Interaction.ClientSetListPlayer
  50. players = game.Players
  51. for i, v in pairs(players:GetPlayers()) do
  52. if v.Name ~= players.LocalPlayer.Name then
  53. Client:InvokeServer(players.LocalPlayer.BlacklistFolder, v, true)
  54. end
  55. end
  56. players.PlayerAdded:connect(function(plr)
  57. Client:InvokeServer(players.LocalPlayer.BlacklistFolder, plr, true)
  58. end)
  59. end)
  60.  
  61.  
  62. local WayPoints = {
  63. ["Wood R Us"] = CFrame.new(265, 5, 57),
  64. ["SpawnPoint"] = CFrame.new(155, 5, 74),
  65. ["Land Store"] = CFrame.new(258, 5, -99),
  66. ["Link's Logic"] = CFrame.new(4607, 9, -798),
  67. ["Cave"] = CFrame.new(3581, -177, 430),
  68. ["Volcano"] = CFrame.new(-1585, 625, 1140),
  69. ["Swamp"] = CFrame.new(-1209, 138, -801),
  70. ["Palm Island"] = CFrame.new(2549, 5, -42),
  71. ["Fancy Furnishings"] = CFrame.new(491, 13, -1720),
  72. ["Boxed Cars"] = CFrame.new(509, 5.2, -1463),
  73. ["Fine Arts Shop"] = CFrame.new(5207, -156, 719),
  74. ["Bob's Shack"] = CFrame.new(260, 10, -2542),
  75. ["Dock"] = CFrame.new(1114, 3.2, -197),
  76. ["Bridge"] = CFrame.new(113, 15, -977),
  77. ["End Times"] = CFrame.new(113, -204, -951),
  78. ["Shrine Of Sight"] = CFrame.new(-1600, 205, 919),
  79. ["The Den"] = CFrame.new(323, 49, 1930),
  80. ["Volcano Win"] = CFrame.new(-1675, 358, 1476),
  81. ["Ski Lodge"] = CFrame.new(1244, 66, 2306),
  82. ["Strange Man"] = CFrame.new(1061, 20, 1131)
  83. }
  84. placewoodrus.MouseButton1Click:connect(function()
  85. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  86. uTorso.CFrame = WayPoints["Wood R Us"]
  87. end)
  88. placelandstore.MouseButton1Click:connect(function()
  89. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  90. uTorso.CFrame = WayPoints["Land Store"]
  91. end)
  92. placecabin.MouseButton1Click:connect(function()
  93. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  94. uTorso.CFrame = WayPoints["Ski Lodge"]
  95. end)
  96. placecars.MouseButton1Click:connect(function()
  97. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  98. uTorso.CFrame = WayPoints["Boxed Cars"]
  99. end)
  100. placeden.MouseButton1Click:connect(function()
  101. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  102. uTorso.CFrame = WayPoints["The Den"]
  103. end)
  104. placefancy.MouseButton1Click:connect(function()
  105. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  106. uTorso.CFrame = WayPoints["Fancy Furnishings"]
  107. end)
  108. placegreen.MouseButton1Click:connect(function()
  109. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  110. uTorso.CFrame = WayPoints["Volcano Win"]
  111. end)
  112. placelogic.MouseButton1Click:connect(function()
  113. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  114. uTorso.CFrame = WayPoints["Link's Logic"]
  115. end)
  116. placemaze.MouseButton1Click:connect(function()
  117. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  118. uTorso.CFrame = WayPoints["Wood R Us"]
  119. end)
  120. placepainting.MouseButton1Click:connect(function()
  121. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  122. uTorso.CFrame = WayPoints["Fine Arts Shop"]
  123. end)
  124. placeshack.MouseButton1Click:connect(function()
  125. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  126. uTorso.CFrame = WayPoints["Bob's Shack"]
  127. end)
  128. placestrange.MouseButton1Click:connect(function()
  129. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  130. uTorso.CFrame = WayPoints["Strange Man"]
  131. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement