1andforhelps

Untitled

Jul 29th, 2020
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. --Resize your character
  2.  
  3. local target = workspace:WaitForChild("1and2and3and4and") -- you must change YOURNAME to your name in roblox
  4. local parts = target:GetChildren()
  5.  
  6. for i = 1, #parts do
  7.     if parts[i]:IsA("Part") then
  8.         parts[i].Size = Vector3.new(5, 5, 5)
  9.     elseif parts[i]:IsA("MeshPart") then
  10.         parts[i].Size = Vector3.new(5, 5, 5)
  11.     end
  12. end
Add Comment
Please, Sign In to add comment