SetPlayerModel does not work server side

Client Version: Canary/Production.
FXServer: 3324 (b2189/1604)
Description: Using SetPlayerModel server side does not change the players model to the argument specified, instead the players model remains the same.
Repo Code:

RegisterCommand('setSkin', function(source)

    SetPlayerModel(source, `a_m_y_skater_01`)

end, false)

According to the runtime doc, SetPlayerModel() isn’t yet a server native.

Use it on the Client.

Also, your , false) at the end is unnecessary. nil is false, so unless you make that portion true it’s going to be redundant. If nothing follows the nil statement, you can leave it out.

It’s available server side through rpc natives fivem/rpc_spec_natives.lua at master · citizenfx/fivem · GitHub

Right you are, never looked that far into it.