exports / triggers

Client Exports / Triggers

ExportResult

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