How do I change a color3 value with,
game.Players.slenderW0lf_YT.Data.ManaColor.Value = color3thinghere
How do I change a color3 value with,
game.Players.slenderW0lf_YT.Data.ManaColor.Value = color3thinghere
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.
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)
--an orange ish color
game.Players.slenderW0lf_YT.Data.ManaColor.Value = Color3.new(1, 0.639216, 0.345098)
game.Players.slenderW0lf_YT.Data.ManaColor.Value = Color3.new(0, 0, 0)