Page cover
For the complete documentation index, see llms.txt. This page is also available as Markdown.

exports / triggers

Client Exports / Triggers

Export
Result

exports.brutal_bowling:isPlayerBowling()

true / false

For example:

local isPlayerBowling = exports.brutal_bowling:isPlayerBowling()

if isPlayerBowling == true then
     print('Player is bowling right now.')
elseif isPlayerBowling == false then
     print('Player is NOT bowling right now.')
end

Last updated