Advertisement
Smartdumgood

Decal Spam

Feb 7th, 2025
157
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.56 KB | None | 0 0
  1. local function applyDecalToPart(part)
  2. for _, face in pairs(Enum.NormalId:GetEnumItems()) do
  3. local decal = Instance.new("Decal")
  4. decal.Texture = "rbxassetid://79763022004094"
  5. decal.Face = face
  6. decal.Parent = part
  7. end
  8. end
  9.  
  10. local function spamDecals()
  11. while true do
  12. local parts = workspace:GetDescendants()
  13. for _, part in pairs(parts) do
  14. if part:IsA("BasePart") then
  15. applyDecalToPart(part)
  16. end
  17. end
  18. wait(0.1)
  19. end
  20. end
  21.  
  22. spamDecals()
  23.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement