#can someone teach me how parameters work/ what they do? Ex. below

1 messages · Page 1 of 1 (latest)

proper ore
#

for _, child in ipairs(children) do
    if child:IsA("BasePart") then
        child.Transparency = 0.8
    end
end```
lilac veldt
#

ok so in a remote event

#

the parameters show you

#

or give you

#

a value

#

so in that parameter

#

I think you are talking about child

#

so basically

#

that scrolls through all children (objects "inside" the parent) and each time that value will be child

#

if you were to place that example script in a let's say building

#

and not to consider that they have models inside the building model (to fix this just call the descendants, but do not mind this)

#

they would all have 0.8 transparency

#

please inform me if I helped! or you are talking about another thing.

#

reminder to try not to use ChatGPT as it doesn't explain well

noble sentinel
noble sentinel
#

You must have its definition confused

#

Please outline what part of that code snippet you struggle to understand

proper ore
#

oh

#

wait

#

lemme read the whole thing

#

for _, child in ipairs(children) do

#

and if child:IsA("BasePart") then