of     2   
chevron_rightchevron_rightchevron_right

LewisAlKhalifa
#219239924Monday, June 19, 2017 5:43 PM GMT

How do you make it to where this shows up as random flowing colors instead of one solid color? if name.Text == "S_ynthetic" then name.TextStrokeTransparency = 0 name.TextStrokeColor3 = Color3.new(0, 122, 229) role.TextStrokeTransparency = 0 role.TextStrokeColor3 = Color3.new(0, 122, 229) role.Text = "Chairman & Founder"
LewisAlKhalifa
#219240062Monday, June 19, 2017 5:45 PM GMT

b
LewisAlKhalifa
#219240177Monday, June 19, 2017 5:47 PM GMT

b1
Dev_Tony
#219240276Monday, June 19, 2017 5:48 PM GMT

Are you asking about how to make the text color constantly change its color to a random one?
kojocrash
#219240281Monday, June 19, 2017 5:48 PM GMT

I aint doing it for 1 robux
LewisAlKhalifa
#219240349Monday, June 19, 2017 5:49 PM GMT

@Dev, yes. @kajajgakadasva, Please stop replying about "juhhh i aint doin it gor on rolux"
f00fc7c8_fox
#219240450Monday, June 19, 2017 5:50 PM GMT

Do you mean transitioning through random colors, or just random every time it's called?
LewisAlKhalifa
#219240498Monday, June 19, 2017 5:51 PM GMT

Just random every time its called.
LewisAlKhalifa
#219240569Monday, June 19, 2017 5:52 PM GMT

b
LewisAlKhalifa
#219240692Monday, June 19, 2017 5:54 PM GMT

b2
LewisAlKhalifa
#219240901Monday, June 19, 2017 5:57 PM GMT

b3 synthetic, synthesized
LewisAlKhalifa
#219241005Monday, June 19, 2017 5:59 PM GMT

b4 synthetic, synthesized
LewisAlKhalifa
#219241312Monday, June 19, 2017 6:03 PM GMT

b5 synthetic, synthesized
Dev_Tony
#219241344Monday, June 19, 2017 6:03 PM GMT

For starters, please stop bumping. if name.Text == 'S_ynthetic' then name.TextStrokeTransparency = 0 role.TextStrokeTransparency,role.Text = 0, 'Chairman & Founder' coroutine.resume(coroutine.create(function() while true do local newColor = Color3.new(math.random(0, 255), math.random(0, 255), math.random(0, 255) name.TextStrokeColor3 = newColor role.TextStrokeColor3 = newColor wait(1) end end)) end
LewisAlKhalifa
#219241606Monday, June 19, 2017 6:07 PM GMT

doesnt work synthetic, synthesized
Dev_Tony
#219241650Monday, June 19, 2017 6:07 PM GMT

Oops, sorry; I made a mistake in the script. The one below should work: if name.Text == 'S_ynthetic' then name.TextStrokeTransparency = 0 role.TextStrokeTransparency,role.Text = 0, 'Chairman & Founder' coroutine.resume(coroutine.create(function() while true do local newColor = Color3.new(math.random(0, 255), math.random(0, 255), math.random(0, 255)) name.TextStrokeColor3 = newColor role.TextStrokeColor3 = newColor wait(1) end end)) end
LewisAlKhalifa
#219241792Monday, June 19, 2017 6:10 PM GMT

still doesnt work :l synthetic, synthesized
Dev_Tony
#219241852Monday, June 19, 2017 6:11 PM GMT

Any errors?
LewisAlKhalifa
#219241880Monday, June 19, 2017 6:11 PM GMT

13:11:02.984 - ServerScriptService.RankHandler:38: 'end' expected (to close 'function' at line 5) near 'eof' synthetic, synthesized it has the on the 'eof' synthetic, synthesized
LewisAlKhalifa
#219241942Monday, June 19, 2017 6:13 PM GMT

heres the whole script local rs = game:GetService("ReplicatedStorage") local remotefolder = rs:WaitForChild("RankFolder") local remote = remotefolder:WaitForChild("RankPlayerOnRespawn") remote.OnServerEvent:connect(function(Player) if not Player then print("an error occured fetching the player") end local pRank = Player:GetRoleInGroup(2691366) wait(1) local ui = script.Rank:Clone() ui.Parent = Player.Character ui.Adornee = Player.Character.Head while not Player.Character.Humanoid do wait() end Player.Character.Humanoid.DisplayDistanceType = Enum.HumanoidDisplayDistanceType.None local frame = ui.Frame local name = frame.Name1 local role = frame.TextLabel name.Text = Player.Name role.Text = pRank if name.Text == 'Player1' then name.TextStrokeTransparency = 0 role.TextStrokeTransparency,role.Text = 0, 'Chairman & Founder' coroutine.resume(coroutine.create(function() while true do local newColor = Color3.new(math.random(0, 255), math.random(0, 255), math.random(0, 255)) name.TextStrokeColor3 = newColor role.TextStrokeColor3 = newColor wait(1) end end)) end synthetic, synthesized
ExtremeBuilder15
#219242003Monday, June 19, 2017 6:14 PM GMT

just add an end)
Dev_Tony
#219242016Monday, June 19, 2017 6:14 PM GMT

Is there any other code in the script that could be causing the error?
Dev_Tony
#219242079Monday, June 19, 2017 6:15 PM GMT

You need to add 'end)' at the very end of your script.
LewisAlKhalifa
#219242185Monday, June 19, 2017 6:16 PM GMT

It works but it doesnt change colors. synthetic, synthesized
Mister_Manakin
#219243293Monday, June 19, 2017 6:33 PM GMT

if you want a smooth transition between colors use Color3.lerp()

    of     2   
chevron_rightchevron_rightchevron_right