Load a script from another resource

Hello, can we do it :

client_script "@resource_name/script.lua" - load a script from another resource

Yeah?






image

In ft_players folder:
image

In __resource.lua (other resource)

client_scripts {
  "@ft_players/src/wrappers.client.lua",
   ...
}

wrappers.client.lua content :

function GetPlayer(...)
  return exports.ft_players:GetPlayer(...)
end

function SetPlayer(...)
  return exports.ft_players:SetPlayer(...)
end

Where is my error ? :frowning: