Documentation
This page provides a detailed list of all available functions in EconomyAPI, along with their usage and expected parameters. Use this as a quick reference when implementing the API in your scripts.
Import API
local economy = require(game.ServerScriptService.EconomyAPI.API)
Function List
economy.AddMoney(Player: player, amount: IntValue)
Adds a specified amount to the player's balance
economy.GetMoney(Player: player)
Returns the player's current balance.
economy.SetMoney(Player: player, amount: IntValue)
Sets the player's money to a specific value.
economy.RemoveMoney(Player: player, amount: IntValue)
Removes a specified amount from the player's balance.
Last updated