How To Make A Paint Tool!
Script -
game.ReplicatedStorage.PaintEvent.OnServerEvent:Connect(function(player, target, selectedColor)
if target and target:IsA("BasePart") then
target.BrickColor = BrickColor.new(selectedColor)
end
end)
Local Script -
https://pastebin.com/5zpy3ZFs