Advertisement
DungeonRoblox

Hmmm... Boiola :3

Jul 30th, 2017
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.83 KB | None | 0 0
  1. --Made By: DungeonRoblox--
  2.  
  3. local ID =560405940 --id here
  4. function spamDecal(v)
  5. if v:IsA("Part") then
  6. for i=0, 5 do
  7. D = Instance.new("Decal")
  8. D.Name = "MYDECALHUE"
  9. D.Face = i
  10. D.Parent = v
  11. D.Texture = ("http://www.roblox.com/asset/?id="..Id)
  12. end
  13. else
  14. if v:IsA("Model") then
  15. for a,b in pairs(v:GetChildren()) do
  16. spamDecal(b)
  17. end
  18. end
  19. end
  20. end
  21. function decalspam(id) --use this function, not the one on top
  22. Id = id
  23. for i,v in pairs(game.Workspace:GetChildren()) do
  24. if v:IsA("Part") then
  25. for i=0, 5 do
  26. D = Instance.new("Decal")
  27. D.Name = "MYDECALHUE"
  28. D.Face = i
  29. D.Parent = v
  30. D.Texture = ("http://www.roblox.com/asset/?id="..id)
  31. end
  32. else
  33. if v:IsA("Model") then
  34. for a,b in pairs(v:GetChildren()) do
  35. spamDecal(b)
  36. end
  37. end
  38. end
  39. end
  40. end
  41.  
  42. decalspam(ID)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement