Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

:IsA help and help with i,v in pairs possibly?

Asked by 6 years ago

So I made an inventory on my simulator, but I need an image to be displayed based on when a boolvalue is true for "filled" and the PetID equals a certain ID. I was going to make a table, but I was just testing the ID first to see if it would go to the direct frame that I needed. I don't know if this is how you use i,v in pairs correctly, but if someone could help me change the image based on the PetID and the boolvalue "filled" being true, I'd appreciate it. The following code is what I have so far

01while wait(.1) do
02    for i, v in pairs(script.Parent.Handler:GetChildren()) do
03        if v:IsA("Frame") then
04            if v.Filled == true then
05                if v.SlotInfo.PetID.Value == 2 then
06                                    v.Display.Image = "rbxgameasset://Images/1EarthGreenPet"
07                end
08            elseif
09                v.Filled == false then
10                    v.Display.Image = ""
11            end
12 
13 
14        end
15    end
16end
0
Don't use wait() as your loop's condition; it's a hack. User#19524 175 — 6y
1
if Filled is a bool value,shouldn't it be v.Filled.Value instead of v.Filled? theking48989987 2147 — 6y
0
lol User#19524 175 — 6y
0
lol wow I can't believe i forgot to put value, thanks for the catch rhettsmith6537 109 — 6y
View all comments (2 more)
0
i'd rather use ClassName and not IsA greatneil80 2647 — 6y
0
Ah thanks, I had no idea about the ClassName property rhettsmith6537 109 — 6y

Answer this question