Created by KeyboardMonster
Features:
- FLOATING BOOMBOX
- HWAITING EMOTE
- 5-PETAL BACKPACK
[FLOATING BOOMBOX]
local sync = game:GetService("ReplicatedStorage").PlaySoungRemote_SpotifySync
local cave = game:GetService("Workspace").World.SpotifyIsland.MusicGames.CaveMusicGame:FindFirstChild("Music Cave"):FindFirstChild("Buttons L")
local trampoline = game:GetService("Workspace").LevelSections.Start.JumpingMusicGame.Buttons.TrampolineButton
local text1 = "Lofi One Shots MeloSax L"
local text2 = "Lofi One Shots Piano-Bass Stabs 1"
for i=1,10,1 do
sync:FireServer(cave, text1)
task.wait(.5)
end
for i=1,10,1 do
sync:FireServer(trampoline, text2)
task.wait(.5)
end
[HWAITING EMOTE]
local pers = game:GetService("ReplicatedStorage").PersistentSetting_Set
for i=2,5,1 do
pers:FireServer("TutorialStep", i)
task.wait(.5)
end
[5 PETAL BACKPACK]
for i,v in pairs(game:GetService("Workspace").LevelSections.Start.ScavangerHunt:GetDescendants()) do
if v:IsA("TouchTransmitter") then
firetouchinterest(game.Players.LocalPlayer.Character.HumanoidRootPart, v.Parent, 0)
task.wait()
firetouchinterest(game.Players.LocalPlayer.Character.HumanoidRootPart, v.Parent, 1)
end
end