#Removing all packages

23 messages · Page 1 of 1 (latest)

keen lintel
#

How do I fix this script its not working

hidden gyro
#

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

lapis hawkBOT
#

studio** You are now Level 3! **studio

hidden gyro
#

replace blockmesh and specialmesh with the actual mesh instances

#

if they arent correct

maiden flume
maiden flume
#

The humanoid thing should be faster as you don’t iterate over the whole character.

#

Just doing the needed thing.

maiden flume
#

@keen lintel did this fix everything?

keen lintel
maiden flume
#

Is something underlined red in the script?

keen lintel
#

it did say nil character

#

but only once

hidden gyro
#

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

maiden flume
#

Oh, how didn’t I saw it.