Advertisement
Guest User

s

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