Way to wait until a string value is not empty?

I am currently trying to figure out a way to wait until a string value is not blank which then will run the rest of my code.

I tried looking through some other forums but haven’t found anything to help.

1 Like

Hi! I think I can help.

local stringValue = --your string value

stringValue:GetPropertyChangedSignal("Value"):Wait()

--the rest of your code

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.