Hi ,
I want too know if it’s possible to delete a props of the map in a specific location .
If it’s possible how ? For the information i want delete the office chair in the office of legendary motorsport .
i have found this information about the chair :
v_club_officechair X:-31,84438 Y:-1114,729 Z:25,42662
Thank All 
I do something similar is my jewel store script… but instead of removing it move it fwd so people can sit in the chair and interact with computer. To do this i have a statement that if they are with-in 150m of the store - find the chair and delete it.
Since you know the coords of the chair and hash just need to use
local chair = GetClosestObjectOfType(31.84438, -1114.729, 25.42662, 1.0, GetHashKey(“v_corp_offchair”), false, false, false)
DeleteObject(chair)
The reason you need it in a if statement and check for distance. Every time you leave the area and come back the game would put the chair back in the same position. Hope this helps you get it sorted out.
SpikE