Another Problem With my if then Statement, What am i doing wrong?
I don't know if there's a problem with the colors on Roblox but when I test, instead of the text color being the desired color below (bronze), it's a whole different color, which is 255, 187, 0 or #ffbb00. which is not the color I want. if you want to see a video of it please let me know
02 | script.Parent.Text = tostring (game.Players.LocalPlayer.Data.Level.Value) |
04 | local level = script.Parent |
06 | if level.Text < = "9" then |
07 | level.TextColor 3 = Color 3. new( 157 , 78 , 0 ) |
09 | if level.Text > = "10" then |
10 | level.TextColor 3 = Color 3. new( 0 , 0 , 0 ) |