Hi, i wanted to get the number of members of a table, i usually used the “#” to do this but suddently it doesn’t work.
local Effects = {
Bloom = Instance.new("BloomEffect"),
Blur = Instance.new("BlurEffect"),
ColorCor = Instance.new("ColorCorrectionEffect"),
SunRays = Instance.new("SunRaysEffect"),
Sky = Instance.new("Sky"),
Atm = Instance.new("Atmosphere")
}
print(#Effects)
i also tried:
print(#Effects:GetChilden())