Skip to main content

BindToStepped

Connects to RunService.Stepped and automatically manages the connection.

vault.BindToStepped((deltaTime: number, alpha: number) => {
print(`Stepped - Delta: ${deltaTime}, Alpha: ${alpha}`)
})

vault.Clean()

Parameters

ParameterTypeDescription
callback(deltaTime: number, alpha: number) => voidFunction to call every stepped frame

Returns

Descriptor - The vault instance (for chaining)

Behavior

  • Wraps RunService.Stepped.Connect()
  • Automatically adds the connection to the vault
  • Returns this for method chaining