Team create cframe of collaborator

I want to create a plugin for team create, I know that you can get the Cframe of your own thing in studio with the following code,

local CamCframe = game.Workspace.CurrentCamera.CFrame
print(CamCframe)

But how would I get the Cframe of another collaborator, or is this not possible?
I have tried looking at team-create-hats, but from my understanding(I may be wrong), that only gets the hat using something like the code I have above
similiar question by another person.
Without this I would have to require all players to have the plugin, which is something I would like to avoid

However, the collaborator will always exist in Players. Perhaps you could play around with RemoteEvents or something?

I tried to go and find the actual little sphere of your collaborator in CoreGui or something, but had no luck.