Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 07/10/23 in all areas

  1. This is fine. You could transform it in 1 query. But that basically means that you will have to split them up later with Lua. SELECT name, 'time' AS type, time, NULL AS kills FROM general ORDER BY time DESC LIMIT 20 UNION ALL SELECT name, 'kills' AS type, NULL AS time, kills FROM general ORDER BY kills DESC LIMIT 20
    1 point
  2. E aí, @AllissonDxyz — bem-vindo ao fórum! Desculpe pelo atraso na resposta. Sobre o seu erro, você pode tentar resolver isso no client-side, trocando de: local player = client para: local player = source Aquele variável client não existe no client-side, ela existe apenas no server-side para fins de segurança, onde você pode confiar nela.
    1 point
×
×
  • Create New...