game.Players.PlayerAdded:Connect(function(plr)
plr.CharacterAdded:Connect(function(char)
local head = char:WaitForChild("Head")
local ColorStorage = Instance.new("Color3Value", char)
ColorStorage.Name = "ColorStorage"
ColorStorage.Value = char["Body Colors"].HeadColor3 -- trying to get the players bodycolor but it doesnt work
afk.TextLabel.Text = plr.Name
local cloneAFK = afk:Clone()
cloneAFK.Parent = head
end)
end)```
#how do u store a players bodycolor in a color3 value?
6 messages · Page 1 of 1 (latest)
just do ColorStorage.Value = char.Head.Color
BodyColors is to set a color
not to get it
ohhh tysm!