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

Changing custom attribute doesn't send signal?

Asked by 1 year ago

I'm using a custom color attribute on a Humanoid that changes the colors of the custom body parts. I'm testing it on a single body part with this script:

while true do
    script.Parent.Color = script.Parent.Parent:FindFirstChild("Humanoid"):GetAttribute("color")
end

and I changed the custom attribute to a different color in testing, but nothing happens. Any help would be appreciated!

1 answer

Log in to vote
0
Answered by
MattVSNNL 620 Moderation Voter
1 year ago
while wait() do
    script.Parent.Color = script.Parent.Parent:FindFirstChild("Humanoid"):GetAttribute("color")
end
0
Tried it, doesn't work. Dothemariobowp9 24 — 1y
Ad

Answer this question