RGB Character Creator

I’ve created this basic prototype for a game with a custom character creator, but the red bar wont work… Please can someone help?
Quick video of it: Character Creator Help Video - YouTube

I can’t really see your code in the video but the value for the hue seems wrong. It should be a string/variable combination in the format “#;#;#” As in red, green, blue.

Something like:
ToString(RedSlider.Value()) + “;” +
ToString(GreenSlider.Value()) + “;” +
ToString(BlueSlider.Value())

1 Like

OH! Thank you very much! I was putting “;” at the beginning and end…

1 Like