How to make yourself blocky in roblox

@im.maariyah

Reply to @ballora_ft.foxy ow to become a blocky In roblox! #blocky #roblox #avatar #person #immaariyah #fyp #fypシ #fy #foru #foryou #foryoupage

♬ Coconut Mall (From "Mario Kart Wii") - Arcade Player

Help and Feedback Building Support

I want to achieve this in my game:

How to make yourself blocky in roblox

By using this:
How to make yourself blocky in roblox

And This:
How to make yourself blocky in roblox


Is it possible? I yes write how to do it, if not do the same. Thanks for the help.

Hey,

Basically how it works is you’ll have to add the ID to the boxes. Clothing and packages are pretty easy as their ID only has to be copied. Do note though that I’m not sure about the blocky character as this is basically when you don’t have any package. You should try it with leaving the box blank and I think it should work.

I hope this will help you.

I know how it works, that you have to copy shirt, hand or other thing ID. Also I edited the Image so you don’t see the ID of items used in my game to not confuse you.
I will try your method. Thanks for your help!

@CheerfulStefannafets unfortunately it doesn’t work.

Just set all the id’s to 0 in a server script;

local BodyParts = { "LeftArm", "LeftLeg", "RightArm", "RightLeg", "Torso" } -- These are the body part you want to make blocky local HumanoidDesc = game:GetService("Players"):GetHumanoidDescriptionFromUserId(player.UserId) for i, BodyPart in ipairs(BodyParts) do HumanoidDesc[BodyPart] = 0 end

1 Like

I have a Solution using HumanoidDescription.
You have to apply your custom HumanoidDescription to player when he spawns.

1 Like

Your code won’t work because you didn’t wrote what is

How to make yourself blocky in roblox
TOP_Crundee123:

player

Help and Feedback Scripting Support

I want everyone’s avatar in my game to be blocky, I have already set the animation to R6 but I don’t know how to make the right arm, left arm blocky, head, etc.

1 Like

In game settings go to the avatar tab and scroll down to the “body parts” section. You will need to find the asset ids of the blocky body parts then copy and paste them where needed.

2 Likes

just search on the tool box Package remover it will make thr character blocky

Go to the game settings and open avatar you can select all play avatars to only r6 and r15.

Free models tend to be dangerous as there is a possibility they may open up backdoors into your games.

the first script when you search “Package Remover” is safe he should check the script first and see if theres no suspicious code.

Help and Feedback Game Design Support

How would i make the character blocky like in ro boxing?

2 Likes

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.

How to make yourself blocky in roblox

2-steep

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

How to make yourself blocky in roblox

3-steep

Find avatar type then change from r15 to r6.

How to make yourself blocky in roblox

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

How to make yourself blocky in roblox

23 Likes

Hi there I know I’m almost a year late to this conversation. but I think it would be good to share this code here

Your script works but it has an inefficiency problem. the code is checking for character meshes many times a second. it could cause server lag or work very slowly in a game that contains thousands of parts. this code I’m sending can do the job almost instantly without any slowdowns.

game.Players.PlayerAdded:Connect(function(Plr) Plr.CharacterAppearanceLoaded:Connect(function(Chr) for _,child in pairs(Chr:GetChildren()) do if child:IsA("CharacterMesh") then child:Destroy() end end end) end)

21 Likes