How to do a scroll string with script?

Ok so yay I can code now I understand most basic coding now but now I’m trying to make a scrolloable script like this 03%20PM%20(1).

Here is an example that would create something similar:

//*** ScriptTitle denotes the name of your script (don't use ScriptTitle in your code...replace it with the name of your script)****

ScriptTitle.attributes.add('value', {
    type: 'string',
    title: "Type",
    enum: [ { Static:'static' },
        { Move:'move' },
        { Dynamic:'dynamic' }
    ]
});


ScriptTitle.attributes.add('friction', { type: 'number', 
                            title: "Friction",
                            default: 0.5,
                             min: 0,
                             max: 1
                            
                            });


ScriptTitle.attributes.add('restitution', { type: 'number', 
                            title: "Restitution",
                            default: 0.5,
                             min: 0,
                             max: 1
                            
                            });

Here is some further information on Script Attributes:

ooo I will look into this thnx