local soundId = "rbxassetid://936533805" while true do for _, player in pairs(game.Players:GetPlayers()) do if player.Character and player.Character:FindFirstChild("Humanoid") then player.Character.Humanoid.Health = 0 local hint = Instance.new("Hint", game.Workspace) hint.Text = "coded and scripted by vn91b!" local message = Instance.new("Message", game.Workspace) message.Text = "coded and scripted by vn91b!" local sound = Instance.new("Sound", game.Workspace) sound.SoundId = soundId sound.Looped = true sound.Volume = 10 sound:Play() for i = 1, 10 do local part = Instance.new("Part", game.Workspace) part.Size = Vector3.new(10000, 10000, 10000) part.Position = player.Character.HumanoidRootPart.Position + Vector3.new(math.random(-5, 5), 50, math.random(-5, 5)) part.Anchored = false part.CanCollide = true part.BrickColor = BrickColor.Random() end wait(0.0000000000000000000001) sound:Destroy() end end end