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

How do i make this worK?

Asked by 9 years ago

Please make your question title relevant to your question content. It should be a one-sentence summary in question form.

how do i make this work?? its a script inside a stringvalue

while true do 
    script.Parent.Value = script.Parent.Parent.Name
    wait(.1)
end
0
That should be working. 2eggnog 981 — 9y

1 answer

Log in to vote
0
Answered by 9 years ago

If you have kept the original name of the stringvalue then it should be:-

while true do 
    --this is the default name for  stringvalue  but you should rename it then it would be
    -- script.Parent."the new name".Value
    script.Parent.Value.Value = script.Parent.Parent.Name
    wait(.1)
end

Ad

Answer this question