• Welcome to skUnity!

    Welcome to skUnity! This is a forum where members of the Skript community can communicate and interact. Skript Resource Creators can post their Resources for all to see and use.

    If you haven't done so already, feel free to join our official Discord server to expand your level of interaction with the community!

    Now, what are you waiting for? Join the community now!

  • LOOKING FOR A VERSION OF SKRIPT?

    You can always check out skUnity Downloads for downloads and any other information about Skript!

Bram01

Member
Sep 29, 2024
3
0
1
I am trying to make a simple way of spawning some text displays, but the documentation doesn't seem to work for me.
I use the latest versions of Skript and SkBee on 1.21.11.

Code:
command /textdisplay:
    permission: *
    trigger:
        spawn text display at player
        set {_display} to last spawned text display
        set billboard of {_display} to center
        set text of {_display} to "THIS IS A TEST"

This seems to work as intended, but what to do for shadows or size or anything else did not work for me from finding it in the docs.
If anyone has worked with text displays before and has some insight, that would be much appreciated.