GetStreamedPickups

From Onset Developer Wiki
GetStreamedPickups

Type: Function
Context: Client
Introduced: v1.0

Description

Get all the streamed pickups for the client.

Syntax

GetStreamedPickups()

Parameters

  • This function has no parameters.

Return Value

  • Returns a table with all the pickups streamed to the client.

Example

local pickups = GetStreamedPickups()
if #pickups == 0 then
    print("No pickups are streamed.")
end

See also

__EDIT_ME__