# 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

`bool`

This property turns on/off the light.

#### Code Samples

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

## Methods

## Events

## See also

{% content-ref url="../../../manual/studio-manual/object/lighting" %}
[lighting](https://docs.overdare.com/manual/studio-manual/object/lighting)
{% endcontent-ref %}
