Advertisement
Isaiah20Yt

Size Changer Script

Jan 29th, 2022
577
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. --Resize your character
  2.  
  3. local target = workspace:WaitForChild("PcGmers") -- 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) --Put the size you want to be where the 5's are
  9. elseif parts[i]:IsA("MeshPart") then
  10. parts[i].Size = Vector3.new(5, 5, 5) --Put the size you want to be where the 5's are
  11. end
  12. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement