So i have a bin when clicked on it would parent the model into the characters model. its not a tool so it wont be seen if im in first person by default, how do I change this? i want to avoid using viewmodels btw. All help appreciated
I think something like this would do the trick
workspace.Part.LocalTransparencyModifier = 0
1 Like
I tried that using a for _,v in pairs loop since its a model. It says LocalTransparencyModifier isnt a valid property of the part which makes sense since it wasnt the characters initial child
1 Like
You need to do it after the model is added to the players character pretty sure
1 Like
Yes, I used a child added function to reference when its been added, again LocalTransparencyModifier was not a valid property of the model’s parts.
for _,v in modelhere:GetChildren() do
if v:IsA("BasePart") then
v.LocalTransparencyModifier = 0
end
end
Keep in mind that this has to be in client.
1 Like