#Removing all packages
23 messages · Page 1 of 1 (latest)
for i, v in pairs(char:GetChildren()) do
if v:FindFirstChild(“Mesh”) then
v.Mesh:Destroy()
end
if v:IsA(“CharacterMesh”) or v:IsA(“SpecialMesh”) or v:IsA(“BlockMesh”) then
v:Destroy()
end
end
** You are now Level 3! **
replace blockmesh and specialmesh with the actual mesh instances
if they arent correct
where do i put this?
This is another way of doing it, humanoid descriptions also work.
It should be GetAppliedDescription()
https://create.roblox.com/docs/reference/engine/classes/Humanoid
The humanoid thing should be faster as you don’t iterate over the whole character.
Just doing the needed thing.
thanks
@keen lintel did this fix everything?
no sadly
What is your new error?
Is something underlined red in the script?
OH
thats a server script
you have to do
game.Players.PlayedAdded:Connect(function(Plr)
Player.CharacterAdded:Connect(function(Char)
—script here
end)
end
idk if its characteradded tho
Oh, how didn’t I saw it.