Scelt

Treasure Hunt Sim GUI

Jan 23rd, 2019
396
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.73 KB | None | 0 0
  1. Unlock All Islands:
  2.  
  3. while true do
  4. wait()
  5. local plr = game:GetService("Players").LocalPlayer.Character.HumanoidRootPart
  6. local path = game.Workspace
  7. for i,v in pairs(path:GetChildren()) do
  8. if v.Name == 'Walls' then
  9. v:Remove()
  10. end
  11. end
  12. end
  13. Unlock Launch Site And Others:
  14.  
  15. local plr = game:GetService("Players").LocalPlayer.Character.HumanoidRootPart
  16. local path = game.Workspace.IslandBuyDoors
  17. for i,v in pairs(path:GetChildren()) do
  18. if v.ClassName == 'Part' then
  19. v:Remove()
  20. end
  21. end
  22.  
  23. Goto Alien Zone:
  24.  
  25. local plr = game:GetService("Players").LocalPlayer.Character.HumanoidRootPart
  26. local path = game.Workspace['Alien']
  27. for i,v in pairs(path:GetChildren()) do
  28. if v.Name == 'UpperTorso' then
  29. plr.CFrame = v.CFrame
  30. end
  31. end
Add Comment
Please, Sign In to add comment