#making humanoids transparent
13 messages · Page 1 of 1 (latest)
You can either put your model(s) into repstorage or serverstorage then clone it into the workspace
Or
Make them transparent at first then use a for loop script to un-transparent all instances under the model that is a part
where can I change the transparency though
And Im spawning zombies that are clones
for i, v in pairs(Model:GetChildren()) do
if v:IsA("Part") then
v.Transparency = 0
end
end
Then i'd recommend you to do the first that i mentioned
ah
why are your variables doubled
oh