Advertisement
SlopranoDark

Something

Feb 8th, 2016
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.24 KB | None | 0 0
  1. function Change()
  2.     local function scan(parent)
  3.         for _,v in pairs(parent:GetChildren()) do
  4.             if (v:IsA("Texture")) then
  5.                 v.StudsPerTileU = 25
  6.                 v.StudsPerTileV = 20
  7.             end
  8.             scan(v)
  9.         end
  10.     end
  11.     scan(script.Parent)
  12. end
  13.  
  14. Change()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement