#Sign glow ink sac with scripting

1 messages · Page 1 of 1 (latest)

tawdry bramble
#

Is there a way to set a sign with the glow ink sac effect from script API?

#

What I currently have: ```ts
const sign = block.getComponent(BlockComponentTypes.Sign)!;
const text = [
§7==============,
§a${Formatter.ToReadableTypeId(item.typeId)},
§a$${Formatter.ToComma(price)} Per,
§7==============,
].join("\n");

sign.setText(text, SignSide.Front);
sign.setText(text, SignSide.Back);
sign.setWaxed(true);

player.sendSuccess("Successfully created shop!");```
#

But as far as I can see, there is no like set glow method on the sign.

#

Please ping on response!

magic citrus
tawdry bramble
#

I knew that existed, it just wasn't showing for me for some reason.