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

How do I check if a string value has a value assigned to it?

Asked by
Jexpler 63
6 years ago

So I want to assign a value to my string value if no value has been assigned to it yet.

1tool.AncestryChanged:Connect(function(c, p)
2    if p:FindFirstChild('Humanoid') then
3        if tool.PN.Value == " " then
4            tool.PN.Value = p.Name
5        end
6    end
7end)

That's all I could think of, and it doesn't work.

1 answer

Log in to vote
1
Answered by 6 years ago
1tool.AncestryChanged:Connect(function(c, p)
2    if p:FindFirstChild('Humanoid') then
3        if tool.PN.Value == "" then
4            tool.PN.Value = p.Name
5        end
6    end
7end)

its if tool.PN.Value == "" then notif tool.PN.Value == " " then

Ad

Answer this question