1. Hi, I'm try to get the Entity Owner Steam ID, but it gives to me xxxxxxxxxxxxxxxx6 instead xxxxxxxxxxxxxxxxx3.

    Code:
    local blockOwner = tostring(block.OwnerID):format("%17.0f")
    Also tried with:
    Code:
    local blockOwner = tostring(block.OwnerID):format("%.0f")
    Code:
    local blockOwner = block.OwnerID:ToString()

     
  2. Code:
    local blockOwner = rust.OwnerIDFromEntity(block)
     
  3. Thank U! :)