Update tabletRadar.lua

This commit is contained in:
erius0 2021-01-08 20:54:59 +03:00 committed by GitHub
parent 2ac7b0534e
commit ad1726cb40
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -5,7 +5,7 @@ print("радар запущен")
while true do
local players = radar.getPlayers()
for i = 1, #pl_list do
for i = 1, #players do
print(players[i].name.." ; Расстояние: "..players[i].distance.." ; Координаты: x = "..players[i].x.." z = "..players[i].z.." y = "..players[i].y)
print("")
end