Advertisement
Guest User

T

a guest
Feb 27th, 2020
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.42 KB | None | 0 0
  1. function Click(mouse)
  2. local playername = game.Players.LocalPlayer
  3. print(playername)
  4. --Variables--
  5. local pl = game.Players.LocalPlayer.Character.HumanoidRootPart
  6. local islandPart = game.Workspace.islandUnlockParts
  7. local islands = {
  8. [1] = islandPart["Enchanted Island"],
  9. [2] = islandPart["Astral Island"],
  10. [3] = islandPart['Mystical Island'],
  11. [4] = islandPart['Space Island'],
  12. [5] = islandPart['Tundra Island'],
  13. [6] = islandPart['Eternal Island'],
  14. [7] = islandPart['Sandstorm'],
  15. [8] = islandPart['Thunderstorm'],
  16. [9] = islandPart['Ancient Inferno Island'],
  17. [10] = islandPart['Golden Master Island'],
  18. [11] = islandPart['Dragon Legend Island'],
  19. [12] = islandPart['Winter Wonder Island'],
  20. [13] = islandPart['Mythical Souls Island'],
  21. [14] = islandPart['Cybernetic Legends Island']
  22. }
  23. --Scripts--
  24. pl.CFrame = islands[1].CFrame
  25. wait(0.2)
  26. pl.CFrame = islands[2].CFrame
  27. wait(0.2)
  28. pl.CFrame = islands[3].CFrame
  29. wait(0.2)
  30. pl.CFrame = islands[4].CFrame
  31. wait(0.2)
  32. pl.CFrame = islands[5].CFrame
  33. wait(0.2)
  34. pl.CFrame = islands[6].CFrame
  35. wait(0.2)
  36. pl.CFrame = islands[7].CFrame
  37. wait(0.2)
  38. pl.CFrame = islands[8].CFrame
  39. wait(0.2)
  40. pl.CFrame = islands[9].CFrame
  41. wait(0.2)
  42. pl.CFrame = islands[10].CFrame
  43. wait(0.2)
  44. pl.CFrame = islands[11].CFrame
  45. wait(0.2)
  46. pl.CFrame = islands[12].CFrame
  47. wait(0.2)
  48. pl.CFrame = islands[13].CFrame
  49. wait(0.2)
  50. pl.CFrame = islands[14].CFrame
  51. end
  52. script.Parent.MouseButton1Down:connect(Click)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement