Before you get confused with the title, I’ll explain what I mean.
As all of you know, there are many services in Roblox for different purposes.
I’m creating a plugin that requires players in team create to be able to store shared information with each other.
What I’m asking is if there’s a hidden (not viewable in the explorer) service that replicates across team create clients and if there’s already one for this sort of occasion.
-- Player 1
for k,v in pairs(game:GetChildren()) do
Instance.new("Folder",v).Name = "Replicates"
end
-- Player 2
for k,v in pairs(game:GetChildren()) do
if v:FindFirstChild("Replicates") then
print(v,"("..v.ClassName..")","replicates")
end
end