Thread: rainbow text

Results 1 to 4 of 4
  1. #1
    southwardtax's Avatar
    Join Date
    Jun 2013
    Gender
    male
    Posts
    7
    Reputation
    10
    Thanks
    1

    Post rainbow text

    i want to know how to make rainbow text in lua for my client, kinda like SkidSchorcher. If anyone has code, or knows how to do this, please make a reply. Thanks!

  2. #2
    leek21's Avatar
    Join Date
    Aug 2008
    Gender
    male
    Location
    HE77
    Posts
    17
    Reputation
    10
    Thanks
    29
    My Mood
    Yeehaw
    its under ok.Visuals
    Code:
    ok.er = math.sin(CurTime() * 4) * 127 + 128
    ok.eg = math.sin(CurTime() * 4 + 2) * 127 + 128
    ok.eb = math.sin(CurTime() * 4 + 4) * 127 + 128
    
    draw.SimpleText("SkidScorcher Public", "wireless gamer", 4, 40, Color(ok.er, ok.eg, ok.eb), TEXT_ALIGN_LEFT, TEXT_ALIGN_BOTTOM)
    or this:
    Code:
    hook.Add("CreateMove","randomcolor", function()
    randomcolor = Color(math.random(255), math.random(255), math.random(255))
    end)
    
    draw.SimpleText("Whatever", "BudgetLabel", 4, 40, randomcolor, TEXT_ALIGN_LEFT, TEXT_ALIGN_BOTTOM)

  3. #3
    Moosicorn's Avatar
    Join Date
    Apr 2015
    Gender
    female
    Posts
    38
    Reputation
    10
    Thanks
    156
    Code:
    local function RainbowChat(mult, text)
        local tab = {}
        
        for i = 1, #tag do
            local col = HSVToColor(i * mult % 360, 1, 1)
            table.insert(tab, col)
            local letter = string.sub(text, i, i)
            table.insert(tab, letter)
        end
        
        chat.AddText(unpack(tab))
    end
    
    
    Usage:
     RainbowChat(5, "I'm a fag!")
    Credits to MPan1

  4. #4
    Smoke's Avatar
    Join Date
    Nov 2014
    Gender
    male
    Posts
    11,899
    Reputation
    2661
    Thanks
    4,610
    My Mood
    Amazed
    Been over a week since last update/bump after answers.

    /Closed.
    Last edited by Hunter; 07-19-2016 at 07:27 AM.


    CLICK TO BUY NOW!!


    Quote Originally Posted by Liz View Post
    This is my first vouch, ever. Rapidgator account worked perfectly. Would buy in the future.

Similar Threads

  1. Greent Text Appeared in Warrock Very Weird
    By Noto in forum WarRock - International Hacks
    Replies: 19
    Last Post: 02-27-2007, 04:53 AM
  2. Project 8 - Taking Suggetions for Text.
    By sf0d in forum Art & Graphic Design
    Replies: 10
    Last Post: 09-06-2006, 08:39 PM
  3. Green Text
    By sealteam4 in forum WarRock - International Hacks
    Replies: 4
    Last Post: 09-05-2006, 02:35 PM
  4. Stylish Text Tutorial
    By Bull3t in forum Tutorials
    Replies: 13
    Last Post: 08-15-2006, 10:25 PM
  5. Simple Reflective Text
    By Chronologix in forum Tutorials
    Replies: 4
    Last Post: 05-20-2006, 05:56 AM