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
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