getsimulationradius
Returns the current simulation radius of the local player.
function getsimulationradius(): numberSynopsis
How it works
Returns the player's current physics simulation radiusSimulation radiusThe spherical region (in studs) around a player where the client has physics authority. Parts inside are simulated locally; parts outside are server-authoritative. Default: ~1000 studs. in studs. The simulation radius determines which parts the client has physics authority over. Parts within the radius are simulated locally (client-side physics); parts outside are server-authoritative. Default is 1000 studs but can be modified with
setsimulationradius to claim physics authority over a larger area.Usage
Read radius
local radius = getsimulationradius()
print("Simulation radius:", radius)Returns
number The current simulation radius in studs.
Deprecated
This value is managed by the server and cannot be meaningfully used for anything.