How to make roblox character blocky

Help and Feedback Scripting Support

So in my game your character gets messed up if you’re not blocky, so I tried to use a script to make the player blocky, and it seems to work, however the player ends up flying away? Also it doesn’t fix the character?
Script:

game.Players.PlayerAdded:Connect(function(player) player.CharacterAdded:Connect(function(character) local hum = character:WaitForChild("Humanoid") if not character:IsDescendantOf(workspace) then character.AncestryChanged:Wait() end local description = hum:GetAppliedDescription() description.Head = 0 description.LeftArm = 0 description.RightArm = 0 description.LeftLeg = 0 description.RightLeg = 0 description.Torso = 0 hum:ApplyDescription(description) end) player:LoadCharacter() end)

1 Like

Whenever you apply a new description to a humanoid, it will replace everything on the character from the humanoid description, so you’re expected to see weird things like flying away.

You might have to anchor the character while it’s applying, or set the CFrame to itself after applying.
You could also try using a StarterCharacter model in StarterPlayer and see if you can replacing the mesh of the character, and all you would have to do is apply the description after.

Your script runs pretty smooth in my game by any chance are you destroying the character? Instead of that just disable auto-loading by going to Players-Properties-Behaviour - CharacterAutoLoads (Set to False)

How to make roblox character blocky

If you want people to be blocky all the time, you may change it in the game settings (in studio)

In home tab:

How to make roblox character blocky

And change these:

How to make roblox character blocky

That would work, except for since blocky isn’t an asset, it doesn’t have an asset ID.

1 Like

nvm i fixed it, it was another script that edited the character and needed a wait

1 Like

Hey, I just figured out! I pressed Full Classic on the presets

How to make roblox character blocky

My character ended up being blocky! With no scripts at all. Cool eh?

1 Like

Help and Feedback Building Support

I want to achieve this in my game:

How to make roblox character blocky

By using this:
How to make roblox character blocky

And This:
How to make roblox character blocky


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 roblox character blocky
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.

3 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.

1 Like