This commit is contained in:
watrabi
2025-09-18 17:55:52 -04:00
commit 977f1ff4b8
15030 changed files with 17324420 additions and 0 deletions
@@ -0,0 +1,38 @@
-- Written by Kip Turner, Copyright ROBLOX 2015
-- Platform Interface
local PlatformService = nil
pcall(function() PlatformService = game:GetService('PlatformService') end)
local PlatformInterface = {}
local gettingFriends = false
function PlatformInterface:GetPartyMembersAsync()
while gettingFriends do wait() end
gettingFriends = true
local partyMembers;
local success, msg = pcall(function()
partyMembers = PlatformService:GetPlatformPartyMembers()
end)
if not success then
print("HeroStatsManager - Error getting party members:" , msg)
end
gettingFriends = false
return partyMembers
end
function PlatformInterface:IsInAParty(partyMembers)
return (partyMembers and #partyMembers > 1)
end
return PlatformInterface