## Trigger
Trigger is a way to give the player(without op) permission to change his score in a scoreboard.
The permission must be granted with `Trigger.enable`:
| Trigger.enable | |
|--|--|
|Score|the entity and score to enable|
Then you can trigger the score:
| constructor | |
|--|--|
|String| the objective to change|
|addNew| if the objective should automatically be created(default = true)|
Or add or set a specific value:
| Trigger.add or Trigger.set| |
|--|--|
|String| ...|
|value| an int to add to the current value(required) |
|addNew| ...|
**Example:**
```dart
Trigger.set(
"test_objective",
value: 5
)
⇒ trigger test_objective set 5
```