Hello, i want to ask If It IS possible to Change the Player skin colour with a Script in the ServerScriptService. If it is possible, can someone explayn it to me? (I am Not the best scripter)
1 Like
Yes, there’s an instance called BodyColors that is present in every character no matter if it’s R6 or R15, it has a bunch of properties you can change that correspond to the characters body parts colors.
Check this out to learn more
4 Likes
loop through parts → change colour property using Color3.new(r,g,b)
Ok thankyou, but what does r,g,b mean?
RGB stands for Red Green Blue, it’s a way to display colours. Each have their own value that go up to 255.
1 Like