Ok, so I'm not the best at Denizen, but I made a script that I thought would be useful!
All you have to do is type a message after the command with color and boom! You have a hologram!
Example usage:
/hologrammaker Hello there &4Moonstone!
And a hologram should appear with the text: Hello there Moonstone!
That's it!
Here is the haste link:
https://one.denizenscript.com/haste/73633
Here is the raw code:
	
	
		
			
	
	
	
		
		
	
Thanks!
			
			All you have to do is type a message after the command with color and boom! You have a hologram!
Example usage:
/hologrammaker Hello there &4Moonstone!
And a hologram should appear with the text: Hello there Moonstone!
That's it!
Here is the haste link:
https://one.denizenscript.com/haste/73633
Here is the raw code:
		Code:
	
	HologramMaker:
    type: command
    name: hologrammaker
    usage: /hologrammaker [text to be displayed]
    aliases:
    - hmaker
    - hologram
    - holomaker
    - holo
    description: Will make holograms
    permission: moonstone.admin.hologram
    tab completions:
        1: AnyTextHere
    script:
        - if !<player.has_permission[moonstone.admin.hologram]>:
            - stop
        - define message <context.raw_args.parse_color>
        - spawn <entity[armor_stand]> <player.location> save:stand
        - adjust <entry[stand].spawned_entity> visible:false
        - adjust <entry[stand].spawned_entity> custom_name:<[message]>
        - adjust <entry[stand].spawned_entity> custom_name_visible:true
	Thanks!