isSuperJumpEnabled()
Returns true
if the player has super jump turned on.
Function Definition
ts
public readonly isSuperJumpEnabled: boolean;
Returns
- boolean
Documentation
Examples
ts
if (player.isSuperJumpEnabled) {
console.log(`They have super jump enabled.!`);
} else {
console.log(`They do not have super jump enabled!`);
}