Hidden service that replicates in team create

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.

Any hidden service will replicate on Team Create.

Not all of them actually. Tried ScriptService last time and it did not. I’m also asking if there’s one suited for this purpose.

None that are specifically to this purpose that I’m aware of.

1 Like

You’d actually be surprised how many services don’t replicate it’s instances in team create. I’ve gone through at least 5 so far.

-- 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
4 Likes

The script didn’t get very far before erroring (One of the services required level 6 permission for class check)

Wrapped it in a pcall instead and here are the results:

Workspace
SoundService
Chat
MarketPlaceService
Players
ReplicatedFirst
StarterPlayer
StarterPack
StarterGui
LocalizationService
JointsService
FriendService
InsertService
Lighting
Teams
ReplicatedStorage
TestService
ServerScriptService
ServerStorage
HttpService

Thank you so much @einsteinK

3 Likes