16 lines
471 B
Markdown
16 lines
471 B
Markdown
### Function: CompleteTransmute(Player)
|
||
|
||
**Description:** Finalizes a transmuting action for the player, typically yielding the transmuted components. This would be called after StartTransmute once the process should complete (if not automatic).
|
||
|
||
**Parameters:**
|
||
|
||
`Player`: Spawn – The player finishing transmuting.
|
||
|
||
**Returns:** None.
|
||
|
||
**Example:**
|
||
|
||
```lua
|
||
-- Example usage (complete the transmuting process after a delay or confirmation)
|
||
CompleteTransmute(Player)
|
||
``` |