SimulationRadius and also sets MaximumSimulationRadius to the same value. Pass max_radius to set the maximum to a different value.
Parameters
Returns
void
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
setsimulationradius(radius: number, max_radius: number?): ()
SimulationRadius and also sets MaximumSimulationRadius to the same value. Pass max_radius to set the maximum to a different value.
| Parameter | Type | Description |
|---|---|---|
radius | number | The new simulation radius. |
max_radius | number? | The maximum simulation radius. Defaults to radius when left out. |
void
setsimulationradius(1000)
local RunService = game:GetService("RunService")
RunService.RenderStepped:Connect(function()
setsimulationradius(10000)
end)