isReloading()
Returns true
if the player is reloading.
Function Definition
ts
public readonly isReloading: boolean;
Returns
- boolean
Documentation
Examples
ts
if (player.isReloading) {
console.log(`They are reloading!`);
} else {
console.log(`They are not reloading!`);
}