-- CLIENT
local x, y, z = 1, 2, 3
function test()
triggerServerEvent("test", localPlayer, x, y, z)
end
-- SERVER
addEvent("test", true)
addEventHandler("test", root,
function(x, y, z)
if x and y and z then
outputChatBox("Liczby x, y, z wynosz?: "..x, y, z, client)
end
end
)