Add Stat
Adds value to the user's stats.
PATCH https://api-sidemod.sidetechroblox.com/v3/stats/addstat
Body Format:

Headers
Name
Type
Description
Authorization*
String
QBLn8GyVpaOHIdWO2iDE
Request Body
Name
Type
Description
userid*
String
1
(Roblox UserId)
amount*
String
5 (Amount)
stat*
String
Points (Name of stat)
If you have reached your daily limit:
{ "status": "429", "message": "Too Many Requests!" }If success:
{ "status": "200", "message": "OK" }If something goes wrong on our end:
{ "status": "500", "message": "Internal Server Error" }If the body is empty:
{ "status": "400", "message": "Invalid Body Parameter. Missing 'userid', 'stat' and/or 'amount'!" }If the wrong body format:
{ "status": "400", "message": "Invalid Body Parameter. Both 'userid' and 'amount' must be numbers." }Last updated