Ability to query "Play Here" starting location

I use a custom character solution for most of my projects. This gives me a bit more confidence in server-authoritative player physics. The problem? I lose the ability to “Play Here” as as far as I know I have no way to replicate this functionality!

Maybe this could be a method or property of RunService?

local character = CharacterGenerator.get(player)
local spawn_transform = RunService.PlayHereCFrame -- Or some equivalent property/function

if ( spawn_transform  ) then
    character:PivotTo(spawn_transform)
end

character.Parent = workspace
14 Likes

+1, this is a niche issue but something I find myself running into very often. Would be a nice addition

1 Like

If you’re interested, I made a plugin to serve as an alternative until this is officially addressed: PlayHereMiddleman - 'Play Here' alternative for custom character situations

1 Like

This would be extremely useful. Bump.