Output:
-- Was printing four different image buttons ImageTransparency, the 0.899.. is actually 0.9
0
0.89999997615814
0
0.89999997615814
Setting Transparency:
Button.ImageTransparency = 0.9
Reading Image Transparency:
if Items:GetChildren()[1] then
for i, v in ipairs(Items:GetChildren()) do
print(v.ImageTransparency)
if v and v.ImageTransparency == 0.9 then
v:Destroy()
end
end |