Clients/Client2018/content/LuaPackages/AppTempCommon/LuaApp/Actions/SetUserIsFriend.lua

9 lines
232 B
Lua

local CorePackages = game:GetService("CorePackages")
local Action = require(CorePackages.AppTempCommon.Common.Action)
return Action(script.Name, function(userId, isFriend)
return {
userId = userId,
isFriend = isFriend,
}
end)