-- Made by ntfofficial https://streamable.com/bnyr6c -- CREAM (THE STAND) IS REQUIRED FOR THE EXPLOIT local Audios = { -- put the audios u want rbxassetid:// is required "rbxassetid://140676342967902", "rbxassetid://72462094866615", "rbxassetid://136002600791592", "rbxassetid://140337059641086", "rbxassetid://114390691335129", } local Players = cloneref(game:GetService("Players")) local ReplicatedStorage = cloneref(game:GetService("ReplicatedStorage")) local Cream = ReplicatedStorage:FindFirstChild("BismalqStuff"):FindFirstChild("Remotes"):FindFirstChild("Cream") function GetIgnoreList() local IgnoreList = {} for _, Player in pairs(Players:GetPlayers()) do if Player.Character then table.insert(IgnoreList, Player.Character) end end return IgnoreList end function PlayAudio(Player) local Character = Player.Character if not Character then return end local HumanoidRootPart = Character:FindFirstChild("HumanoidRootPart") if not HumanoidRootPart then return end local RaycastParams = RaycastParams.new() RaycastParams.FilterDescendantsInstances = GetIgnoreList() RaycastParams.FilterType = Enum.RaycastFilterType.Exclude local RaycastResult = Workspace:Raycast(HumanoidRootPart.CFrame.Position, Vector3.new(0, -75, 0), RaycastParams) if RaycastResult then Cream:FireServer("tp", CFrame.new(RaycastResult.Position - Vector3.new(0, 7.5, 0)), Audios[math.random(#Audios)]) end end while task.wait(1) do for _, Player in pairs(Players:GetPlayers()) do PlayAudio(Player) end end