How to make a character blocky by default?

Hi, I can help you!
It have some steps.

1-steep

Go to studio and in page home find game settings, and press on it.

2-steep

When you got in settings page find avatar page and press on it.

Second

3-steep

Find avatar type then change from r15 to r6.

4-steep

Go to Explorer, and in workspace add script.

5-steep

To script paste this simple script:

while true do
wait()
c=game.Workspace:getChildren()
for i = 1, #c do
cc=c[i]:getChildren()
for ii = 1, #cc do
if cc[ii].className=="CharacterMesh" then
cc[ii]:Remove()
end
end
end
end

Done :slight_smile:

23 Likes