---
name: StepFrequency
last_updated: 2026-06-30T19:15:20Z
type: enum
summary: "Enum used with RunService:BindToSimulation() to indicate the frequency at which the bound function is called."
---

# StepFrequency

Enum used with [RunService:BindToSimulation()](/docs/reference/engine/classes/RunService.md) to indicate the frequency
at which the bound function is called.

**Type:** enum

## Items

| Name | Value | Description |
|------|-------|-------------|
| `Hz60` | 0 | The bound function is called at 60 Hz. |
| `Hz30` | 1 | The bound function is called at 30 Hz. |
| `Hz15` | 2 | The bound function is called at 15 Hz. |
| `Hz10` | 3 | The bound function is called at 10 Hz. |
| `Hz5` | 4 | The bound function is called at 5 Hz. |
| `Hz1` | 5 | The bound function is called at 1 Hz. |