SHOW:
|
|
- or go back to the newest paste.
1 | --Resize your character | |
2 | ||
3 | - | local target = workspace:WaitForChild("YOURNAME") -- you must change YOURNAME to your name in roblox |
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 |