Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- --Resize your character
- local target = workspace:WaitForChild("PcGmers") -- you must change YOURNAME to your name in roblox
- local parts = target:GetChildren()
- for i = 1, #parts do
- if parts[i]:IsA("Part") then
- parts[i].Size = Vector3.new(5, 5, 5) --Put the size you want to be where the 5's are
- elseif parts[i]:IsA("MeshPart") then
- parts[i].Size = Vector3.new(5, 5, 5) --Put the size you want to be where the 5's are
- end
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement