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