Change a color3 value

How do I change a color3 value with,

game.Players.slenderW0lf_YT.Data.ManaColor.Value = color3thinghere

2 Likes

If you’re Datas Value is already a Color3.new/Color3.fromRGB/Color3.fromHSV, then you just need the actual numbers inside of it. If it doesn’t then, you should look into the Color3 property.

1 Like
local players = game:GetService('Players')
local player = players:WaitForChild('slenderW0lf_YT')

--//This is assuming that "ManaColor" is a Color3 value
player.Data.ManaColor.Value = Color3.fromRGB(0,0,0)
2 Likes
--an orange ish color
game.Players.slenderW0lf_YT.Data.ManaColor.Value = Color3.new(1, 0.639216, 0.345098)
1 Like

game.Players.slenderW0lf_YT.Data.ManaColor.Value = Color3.new(0, 0, 0)

2 Likes