Learn how to use the Roblox ReAdmin Ordering Module
createOrder
with the player object and order details.
player
: The player object initiating the order.recipient
: The player object who will receive the order. This can be the same as player
.{{name = "ItemName", quantity = ItemQuantity}}
: A table containing order item details.claimOrder
method.
orderId
: The ID of the order to claim.player
: The player object claiming the order.releaseOrder
method.
completeOrder
method.
cancelOrder
method.
createOrder
method. This step involves specifying the order’s recipient and the details of the items being ordered, such as name and quantity.
claimOrder
method. Claiming an order signifies that it is currently being handled and is in the process of fulfillment.
releaseOrder
method.
completeOrder
method.
cancelOrder
method. Cancellation might occur for various reasons, such as the player canceling their request or due to issues in fulfilling the order. Canceling an order removes it from the processing queue and marks it as closed without fulfillment.