> For the complete documentation index, see [llms.txt](https://docs.overdare.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.overdare.com/development/api-reference/classes/light.md).

# Light

Light : `Instance`

## Overview

This is the base class for lighting effect instances such as SpotLight and PointLight

## Properties

### Brightness

`number`

This property sets the light’s intensity.

#### Code Samples

```lua
PointLight.Brightness = 5000
```

### Color

`Color3`

This property sets the light’s color.

#### Code Samples

```lua
PointLight.Color = Color3.fromRGB(255, 0, 0)
```

### Enabled

`boolean`

This property turns on/off the light.

#### Code Samples

```lua
PointLight.Enabled = false
```

## Methods

## Events

## See also

{% content-ref url="/pages/3KvY0jqe4oODQNMi9cxP" %}
[Lighting](/manual/studio-manual/object/lighting.md)
{% endcontent-ref %}
