Hi, how do i fix this error? I don’t understand what the error means.
RemoteEvent.OnServerEvent:Connect(function(player,Test)
local httpService = game:GetService("HttpService")
local url = "https://users.roproxy.com/v1/users"
local data = httpService:GetAsync(url .. "/" ..Test)
data = httpService:JSONDecode(data)
print(data.name)
local user_name = data.name
task.wait(5)
RemoteEvent2:FireClient(user_name) -- this give error
return data.name
end)