Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local function applyDecalToPart(part)
- for _, face in pairs(Enum.NormalId:GetEnumItems()) do
- local decal = Instance.new("Decal")
- decal.Texture = "rbxassetid://79763022004094"
- decal.Face = face
- decal.Parent = part
- end
- end
- local function spamDecals()
- while true do
- local parts = workspace:GetDescendants()
- for _, part in pairs(parts) do
- if part:IsA("BasePart") then
- applyDecalToPart(part)
- end
- end
- wait(0.1)
- end
- end
- spamDecals()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement