So I want to assign a value to my string value if no value has been assigned to it yet.
1 | tool.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 |
7 | end ) |
That's all I could think of, and it doesn't work.
1 | tool.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 |
7 | end ) |
its if tool.PN.Value == "" then
notif tool.PN.Value == " " then