-- Create a new Sound instance
local sound = Instance.new("Sound")
-- Set the properties of the sound
sound.SoundId = "rbxassetid://6308606116" -- Replace with your sound ID
sound.Pitch = 0.89
sound.Volume = 2
sound.Parent = workspace -- Place the sound in the workspace
-- Play the sound once
sound:Play()
-- Optional: Clean up the sound after it's done playing
sound.Ended:Connect(function()
sound:Destroy()
end)
game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-2240, 191, 669 )