What’s wrong? If anything, I think I’m using the wrong ValueType.
It’s currently a StringValue.
script.Parent.Parent.Parent.Parent.Parent.UserOwned.Changed:Connect(function()
print ("Mailbox Name Value changed.")
script.Parent.Text = (script.Parent.Parent.Parent.Parent.Parent.UserOwned.Value.."'s Plot") --set the owner's text
end)
local Owner = script.Parent:FindFirstAncestorWhichIsA("Folder"):FindFirstChildWhichIsA("StringValue")
Owner:GetPropertyChangedSignal("Value"):Connect(function()
script.Parent.Text = (Owner.Value.."'s Plot") --set the owner's text
end)