Hello i need help with a character customization script, Hair,Shirt,Pants everything works except changing the Skin, i keep getting “(self: Instance, name: string, recusrive: boolean?) → Instance” Could this be the problem? No error in output or anything
it may seem tricky, but it’s wrong because of how you’re checking for hair
if (FoundInstance and String ~= "Hair") then
elseif String == "Skin" then
end
...
-- Read it like this instead
if String ~= "Hair" then -- If String is not "Hair" then; Otherwise String is "Hair"
elseif String == "Skin" then -- the elseif means String is "Hair" (elseif "Hair" == "Skin" cannot be compared)
end
edit: the (self: Instance, name: string, recursive: boolean?) -> Instance text is from hovering over :FindFirstChild()