Skip to content

Latest commit

 

History

History
12 lines (9 loc) · 314 Bytes

allowNSFWEmotes.md

File metadata and controls

12 lines (9 loc) · 314 Bytes

Allow NSFW Emotes

Toggle if the player can use NSFW emotes or not. The enableNSFWEmotes cfg option must be set to "limited"

local playerState = LocalPlayer.state

-- Allow NSFW Emotes
playerState:set('allowNSFWEmotes', true, true)

-- Block NSFW Emotes
playerState:set('allowNSFWEmotes', false, true)