## Minimal Repro
Create an object to act as the rezzer.
Put an object named 'object' inside the rezzer.
In the rezzer, place this script.
default
{
touch_start(integer total_number)
{
key rezzed_object = llRezObjectWithParams("object", []);
llOwnerSay(rezzed_object);
}
}
Place the rezzer in a parcel where build rights is set group only. Be in the rez group but don't have the group active. Make sure the object has no group set.
Touch the rezzer.
## Expected Behaviour
The documentation states:
On failure, returns (key)"" (in LSL), or NULL_KEY (in Lua).
So, I would expect to get an empty string or NULL_KEY.
## Actual Behaviour
I get a valid key like
cfba8a35-1982-6941-f28a-2f53ebac8e8c
But no object rezzes, and I get an error in my console like
`
Can't rez object 'object' at { ... } on parcel 'Somewhere' in region ... because the owner of this land does not allow it. Use the land tool to see land ownership.
`