05-14-2017, 01:27 AM
You need to explicitly log the individual values:
(I prefer using string.format to concatenation, but either should work)
1 2 | local lastBedPos = Player:GetLastBedPos() LOG( string.format ( "%s Bed: [%d, %d, %d]" , Player:GetName(), lastBedPos.x, lastBedPos.y, lastBedPos.z)) |