Animated text

  • 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 comminuty!

    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!

boqkzi

Member
Feb 10, 2024
2
0
1
23
Hello, I want to make a scoreboard for my server, where the title will slowly change colors. From red to orange and back over and over. does anyone know how i could skript that?
 
Well, I do not know how to do that, and it'll probably take a lot of time, that's why I think you should use a plugin called TAB and watch some tutorials on how to animate with it.
 
Hello, I want to make a scoreboard for my server, where the title will slowly change colors. From red to orange and back over and over. does anyone know how i could skript that?
just use simple plugin like this instead of spending a couple dozen hours on a hard script.
 
just use simple plugin like this instead of spending a couple dozen hours on a hard script.
Imo, wouldn't be too hard to make. You just loop a variable an infinite amount of times and you can have it change colors/etc.
Code:
# Example:
every second:
   set {An} to "&cAnimation"
   wait 0.25 seconds
   set {An} to "&6Animation"
   wait 0.25 seconds   
   set {An} to "&eAnimation"
   wait 0.25 seconds 
   set {An} to "&aAnimation"
   wait 0.25 seconds   
   set {An} to "&bAnimation"
   wait 0.25 seconds   
   set {An} to "&dAnimation"
Then just use that variable for the scoreboard.
 
Imo, wouldn't be too hard to make. You just loop a variable an infinite amount of times and you can have it change colors/etc.
Code:
# Example:
every second:
   set {An} to "&cAnimation"
   wait 0.25 seconds
   set {An} to "&6Animation"
   wait 0.25 seconds  
   set {An} to "&eAnimation"
   wait 0.25 seconds
   set {An} to "&aAnimation"
   wait 0.25 seconds  
   set {An} to "&bAnimation"
   wait 0.25 seconds  
   set {An} to "&dAnimation"
Then just use that variable for the scoreboard.
Dude, "No need to re-invent the wheel" , why spend a lot of time on an unoptimized script when you can install 1 plugin, get a lot more functions, and save your time?
 
Hello, I want to make a scoreboard for my server, where the title will slowly change colors. From red to orange and back over and over. does anyone know how i could skript that?
Requires SkBee
Code:
command animated:
  trigger:
    loop 100 times:
      set title of player' board to mini message from "<gradient:red:gold:%loop-number/50-1%>Your Server's Name</gradient>"
      wait tick
Untitled video - Made with Clipchamp.gif
 
Last edited: