Advertisement
SUUKIDIS_69

Spotify Island script

May 6th, 2022
338
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.47 KB | None | 0 0
  1. First Script:
  2.  
  3. local args = {[1] = 100000}
  4.  
  5. game:GetService("ReplicatedStorage").Spotify_GrantPlayerXP:InvokeServer(unpack(args))
  6.  
  7.  
  8. ___________________________________________________________________________________________________________________________
  9. 2nd Script:
  10.  
  11. local trol = game:GetService("Workspace").LevelSections
  12.  
  13. local junk = {}
  14.  
  15. for i,v in pairs(trol:GetDescendants()) do
  16. if v:IsA("TouchTransmitter") then
  17. table.insert(junk,v)
  18. end
  19. end
  20.  
  21. for i = 1,50 do
  22. coroutine.resume(coroutine.create(function()
  23. for i,v in pairs(junk) do
  24. firetouchinterest(game.Players.LocalPlayer.Character.HumanoidRootPart,v.Parent,0)
  25. firetouchinterest(game.Players.LocalPlayer.Character.HumanoidRootPart,v.Parent,1)
  26. game:GetService("ReplicatedStorage").TGSVaultZone_VaultedEvent:FireServer(v.Parent)
  27. end
  28. end))
  29. end
  30.  
  31. game.Players.LocalPlayer.Character.HumanoidRootPart.Anchored = false
  32.  
  33. ___________________________________________________________________________________________________________________________
  34. 3rd Script:
  35.  
  36. local junk = game:GetService("Workspace").LevelSections.Start.Coins
  37. local junk2 = game:GetService("Workspace").LevelSections.Start.ScavangerHunt
  38. local junk3 = game:GetService("Workspace").LevelSections.Start.JumpingMusicGame.Buttons.TrampolineButton
  39. local junk4 = game:GetService("Workspace").World.SpotifyIsland.MusicGames.CaveMusicGame["Music Cave"]["Buttons R"].button
  40.  
  41.  
  42. for i = 1,20 do
  43. wait(1.5)
  44. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = junk3.CFrame
  45. end
  46.  
  47. for i,v in pairs(junk:GetDescendants()) do
  48. if v:IsA("BasePart") then
  49. firetouchinterest(game.Players.LocalPlayer.Character.HumanoidRootPart,v,0)
  50. wait()
  51. firetouchinterest(game.Players.LocalPlayer.Character.HumanoidRootPart,v,1)
  52. end
  53. end
  54.  
  55. for i,v in pairs(junk2:GetDescendants()) do
  56. if v:IsA("BasePart") then
  57. firetouchinterest(game.Players.LocalPlayer.Character.HumanoidRootPart,v,0)
  58. wait()
  59. firetouchinterest(game.Players.LocalPlayer.Character.HumanoidRootPart,v,1)
  60. end
  61. end
  62.  
  63. junk.DescendantAdded:Connect(function(dec)
  64. if dec:IsA("BasePart") then
  65. firetouchinterest(game.Players.LocalPlayer.Character.HumanoidRootPart,dec,0)
  66. wait()
  67. firetouchinterest(game.Players.LocalPlayer.Character.HumanoidRootPart,dec,1)
  68. end
  69. end)
  70.  
  71. for i = 1,20 do
  72. wait(1.5)
  73. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = junk4.CFrame
  74. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement